Reload CSS

Reload CSS

Reload your css without refreshing the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reload CSS",
  "version": "1.0",
  "description": "Reload your css without refreshing the page",
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "64": "img/logo_64.png",
    "128": "img/logo_128.png"
  },
  "author": "Matt Hughes",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jquery.hotkeys.js",
        "js/reloader.js",
        "js/main.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/hughes/Reload-CSS",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage"
  ]
}