Feature Queries Manager

Feature Queries Manager

Manage and toggle CSS on a page behind a @supports Feature Query.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Feature Queries Manager",
  "short_name": "FQM",
  "description": "Manage and toggle CSS on a page behind a @supports Feature Query.",
  "version": "0.3",
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "devtools_page": "devtools/index.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.js",
        "content/content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/[email protected]",
    "48": "images/[email protected]",
    "64": "images/[email protected]",
    "128": "images/[email protected]"
  }
}