Possible Duplicate:
My CSS is not getting injected through my content script
manifest.json
{
"name": "TESTE",
"version": "0.0.0.1",
"manifest_version": 2,
"description": "Description",
"content_scripts": [
{
"matches": ["http://*/*wss"],// <<---------
"css": ["style.css"],
"js":["alert.js"]
}
],
"permissions": ["tabs", "<all_urls>","http://*/*"]
}
The js file is working perfectly, but the css just load if i put generic match like
"matches":["http://*/*"]
Why?