Facebook Video Blocker

Facebook Video Blocker

Save your data by blocking the videos on your facebook timeline with just a click

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html",
    "default_title": "Facebook Video Blocker"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "scripts/jquery-3.1.1.min.js",
        "scripts/main.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "scripts/rule.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Save your data by blocking the videos on your facebook timeline with just a click ",
  "icons": {
    "64": "img/icon.png"
  },
  "manifest_version": 2,
  "name": "Facebook Video Blocker",
  "permissions": [
    "tabs",
    "webRequest",
    "*://*/*",
    "contextMenus",
    "webNavigation",
    "webRequestBlocking",
    "storage"
  ],
  "short_name": "Facebook Video Blocker",
  "version": "1.0.2"
}