CSS Brush - Live CSS editor

CSS Brush - Live CSS editor

Live CSS editor. Apply CSS styles live on a webpage.

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 Brush - Live CSS editor",
  "description": "Live CSS editor. Apply CSS styles live on a webpage.",
  "version": "1.0.6010",
  "browser_action": {
    "default_icon": "cssbrush.png",
    "default_popup": "index.html",
    "badge": "CSS Brush"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "loadbrush.js",
        "jquery-1.11.1.min.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}