Examine source code of Ads Swapper | Self Growth

Inspect and view changes in Ads Swapper | Self Growth 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": "Ads Swapper | Self Growth",
  "description": "Watch videos of wisdom during ad breaks on OTT platforms and YouTube for self growth.",
  "version": "1.5",
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": {
      "16": "images/adswapper_16.png",
      "32": "images/adswapper_32.png",
      "48": "images/adswapper_48.png",
      "64": "images/adswapper_64.png",
      "128": "images/adswapper_128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.sonyliv.com/*",
        "https://*.hulu.com/*",
        "https://*.zee5.com/*",
        "https://*.hotstar.com/*",
        "https://*.altbalaji.com/*",
        "https://*.voot.com/*",
        "https://*.erosnow.com/*",
        "https://*.youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.js"
      ],
      "matches": [
        "https://*.sonyliv.com/*",
        "https://*.hulu.com/*",
        "https://*.zee5.com/*",
        "https://*.hotstar.com/*",
        "https://*.altbalaji.com/*",
        "https://*.voot.com/*",
        "https://*.erosnow.com/*",
        "https://*.youtube.com/*"
      ]
    }
  ],
  "icons": {
    "16": "images/adswapper_16.png",
    "32": "images/adswapper_32.png",
    "48": "images/adswapper_48.png",
    "64": "images/adswapper_64.png",
    "128": "images/adswapper_128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "commands",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.sonyliv.com/*",
    "https://*.hulu.com/*",
    "https://*.zee5.com/*",
    "https://*.hotstar.com/*",
    "https://*.altbalaji.com/*",
    "https://*.voot.com/*",
    "https://*.erosnow.com/*",
    "https://*.youtube.com/*"
  ],
  "commands": {
    "toggle-tab-mute": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      },
      "description": "Toggles current tab mute state"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}