chrome-usercss-hogashi

chrome-usercss-hogashi

usercss for each site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "chrome-usercss-hogashi",
  "version": "0.4.1",
  "description": "usercss for each site",
  "author": "hogashi",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "chrome-usercss-hogashi",
    "default_popup": "popup.html"
  },
  "options_page": "popup.html"
}