The content_scripts manifest property is an array, so you can define several script specification objects:
"content_scripts": [ { "matches": ["http://www.google.com/*"], "css": ["mystyles.css"], "js": ["a.js"], "all_frames": false }, { "matches": ["http://www.yahoo.com/*"], "js": ["b.js"], "all_frames": true } ],
source share