color ssc

color ssc

Easily change Saturate, Sepia, Contrast styles on the webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "color ssc",
  "description": "Easily change Saturate, Sepia, Contrast styles on the webpage ",
  "version": "0.2",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "Background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "Content.js"
      ],
      "run_at": "document_start"
    }
  ]
}