Say I have two content scripts, codeA.js and codeB.js. I am wondering if it possible to run codeA.js on http://www.example.com and hav
codeA.js
codeB.js
Note that content_scripts is an array:
content_scripts
"content_scripts": [ { "matches": ["http://www.example.com/*"], "js": ["codeA.js"] }, { "matches": ["http://www.domain.com/*"], "js": ["codeB.js"] } ]