My Style

My Style

Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Style",
  "description": "Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.",
  "version": "0.3",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "my-style.css"
      ],
      "js": [
        "my-style.js"
      ],
      "run_at": "document_start"
    }
  ]
}