Fox Reload Blocker

Fox Reload Blocker

Block page reloads on Fox News

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Holly",
  "name": "Fox Reload Blocker",
  "description": "Block page reloads on Fox News",
  "version": "1.1.0",
  "icons": {
    "48": "icon48.png"
  },
  "background": {
    "scripts": [
      "event_script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.foxnews.com/*"
      ],
      "js": [
        "jquery-1.12.3.slim.min.js",
        "settings.js",
        "notifiers.js",
        "content_script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "optionsPage.html",
    "chrome_style": true
  },
  "page_action": {
    "default_title": "Fox Reload Blocker",
    "default_icon": "icon48.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "http://foxnews.com/*"
  ]
}