Examine source code of ivideos - Video Accelerator

Inspect and view changes in ivideos - Video Accelerator 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": "__MSG_appName__",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "version": "2.3.1",
  "author": "ivideos",
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "optional_permissions": [],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/inject.js",
        "js/content-script.js",
        "js/*.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "homepage_url": "https://www.ivideos.one",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html"
  },
  "omnibox": {
    "keyword": "ivideos"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}