Comment injecter des CSS dans la page web par extension Chrome?

Je ne sais pas comment faire pour injecter du CSS dans une page web grâce à une extension Chrome. Je suis en train d'injecter ce dans une page web:

body {
   background: #000 !important;
}

a {
   color: #777 !important;
}

Voici mon manifeste.json:

{
"update_url":"http://clients2.google.com/service/update2/crx",
  "name": "Test Extension",
  "version": "1.0",
  "description": "This is a test extension for Google Chrome.",
  "icons": { "16": "icon16.png",
           "48": "icon48.png",
          "128": "icon128.png" },
  "background_page": "background.html",
  "browser_action": {
    "default_icon": "icon19.png"
  },
  "content_scripts": [
    {
      "matches": ["http://test-website.com/*"], 
      "js": ["js/content-script.js"]
    }
  ],

    "permissions": [ "tabs", "http://test-website.com/*" ]

}
InformationsquelleAutor timmya | 2011-10-01