Examine source code of Next Episode Button for kiss-anime.org

Inspect and view changes in Next Episode Button for kiss-anime.org 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": "Next Episode Button for kiss-anime.org",
  "version": "1.1.0.0",
  "manifest_version": 3,
  "description": "Create a button under the playing video for easily access to next episode.",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "contextMenus"
  ],
  "action": {
    "default_title": "Press Ctrl+Shift+1 to next episode.",
    "default_icon": {
      "16": "/icons/next16.png",
      "32": "/icons/next32.png",
      "48": "/icons/next48.png",
      "128": "/icons/next128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "Jump to next episode on the current page."
    }
  },
  "icons": {
    "16": "/icons/next16.png",
    "32": "/icons/next32.png",
    "48": "/icons/next48.png",
    "128": "/icons/next128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.kiss-anime.org/*"
      ],
      "js": [
        "content-scripts/content.js"
      ],
      "css": [
        "content-scripts/button.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}