CSS remove and combine

CSS remove and combine

Removes unused selectors from all stylesheets on a page and combines the result into a single stylesheet that can be downloaded

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CSS remove and combine",
  "short_name": "CSS remove",
  "version": "0.2.0.2",
  "browser_action": {
    "default_icon": "file_CSS.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "description": "Removes unused selectors from all stylesheets on a page and combines the result into a single stylesheet that can be downloaded",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2
}