Examine source code of OpenLoad Ad Blocker

Inspect and view changes in OpenLoad Ad Blocker 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": "OpenLoad Ad Blocker",
  "version": "1.1",
  "manifest_version": 2,
  "description": "watch openload, streamango,videos with no ads ...",
  "icons": {
    "16": "16-on.png",
    "48": "48-on.png",
    "128": "128-on.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "16-on.png",
      "24": "24-on.png",
      "32": "32-on.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/frame.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "storage",
    "http://*/*",
    "https://*/*",
    "http://*/*/*",
    "https://*/*/*"
  ]
}