Examine source code of Twiclips - Twitch Clip Downloader

Inspect and view changes in Twiclips - Twitch Clip Downloader 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "homepage_url": "https://chrome.google.com/webstore/detail/twiclips/mjnnjgpeccmgcobgegepeljeedilebif",
  "description": "__MSG_extDes__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://clips.twitch.tv/*",
        "*://www.twitch.tv/*"
      ],
      "css": [
        "css/custom.css"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://twiclips.com/*",
        "*://dev.twiclips.com/"
      ],
      "js": [
        "js/web-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icons/128_logo.png"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.twiclips.com/*",
      "*://twiclips.com/*"
    ]
  },
  "version": "1.0.12",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*.facebook.com/*",
    "*://*.twitter.com/*",
    "*://*.pinterest.com/*",
    "*://*.reddit.com/*",
    "*://*.aliyuncs.com/*",
    "*://twiclips.com/*",
    "*://dev.twiclips.com/",
    "*://clips.twitch.tv/*",
    "*://www.twitch.tv/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "128": "icons/128_logo.png"
    }
  }
}