Examine source code of New antibanner

Inspect and view changes in New antibanner 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": 2,
  "name": "New antibanner",
  "description": "New antibanner",
  "version": "1.2",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "browser_action": {
    "default_icon": "img/logotype.png"
  },
  "background": {
    "scripts": [
      "js/libs/jquery-3.2.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/libs/jquery-3.2.1.min.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://*.facebook.com/*"
      ],
      "all_frames": false
    },
    {
      "js": [
        "js/libs/jquery-3.2.1.min.js",
        "js/fb1.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "css": [
        "css/fb.css"
      ],
      "js": [
        "js/libs/jquery-3.2.1.min.js",
        "js/fb2.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "js/libs/jquery-3.2.1.min.js",
        "js/fb3.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*.facebook.com/*",
    "storage",
    "cookie"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "img/arrows.png"
  ]
}