Examine source code of StopWatchingYouTube

Inspect and view changes in StopWatchingYouTube 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
{
  "manifest_version": 3,
  "name": "StopWatchingYouTube",
  "version": "1.0",
  "description": "YouTube依存をなくしましょう。YouTubeに時間制限をかけて、仕事や勉強に集中しましょう。YouTubeにペアレンタルコントロールをかけましょう。",
  "web_accessible_resources": [
    {
      "resources": [
        "bgm/stopyoutube.mp3"
      ],
      "matches": [
        "*://*.www.youtube.com/*"
      ],
      "extension_ids": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.www.youtube.com/*"
      ],
      "js": [
        "stopyoutube.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "author": "ishikawa-security",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}