CSS Reloader

CSS Reloader

CSS Reloader is a browser extension which allows developers to reload CSS without reloading the page itself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CSS Reloader",
  "version": "1.1.8",
  "description": "CSS Reloader is a browser extension which allows developers to reload CSS without reloading the page itself.",
  "options_page": "options.htm",
  "background": {
    "page": "background.htm"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "tabs"
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png",
    "256": "icons/icon_256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "cssreloader.content.js"
      ]
    }
  ]
}