Examine source code of Hyakanime Crunchyroll Sync

Inspect and view changes in Hyakanime Crunchyroll Sync source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Hyakanime Crunchyroll Sync",
  "description": "Synchronisation automatique des épisodes que vous regardez sur Crunchyroll, directement sur Hyakanime.",
  "manifest_version": 3,
  "version": "1.0.0",
  "permissions": [
    "tabs",
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.crunchyroll.com/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "host_permissions": [
    "*://www.crunchyroll.com/*",
    "*://www.hyakanime.fr/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}