AutoUpdater for AniList

AutoUpdater for AniList

An auto-updater for AniList.co

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutoUpdater for AniList",
  "version": "1.0",
  "description": "An auto-updater for AniList.co",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "identity",
    "notifications"
  ],
  "options_page": "options/options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "oauth2": {
    "client_id": "pgjechodekepedeanbechdodnkilemkj",
    "scopes": [
      "https://anilist.co"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.crunchyroll.com/*",
        "https://*.hulu.com/*",
        "https://*.netflix.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3
}