No Neutrality Simulator

No Neutrality Simulator

Simulates a world without Net Neutrality

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No Neutrality Simulator",
  "description": "Simulates a world without Net Neutrality",
  "version": "1.0",
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "include_globs": [
        "*google*",
        "*youtube*",
        "*facebook*",
        "*reddit*",
        "*bitbucket*",
        "*github*",
        "*twitter*",
        "*yikyak*",
        "*wikipedia*",
        "*buzzfeed*",
        "*washingtonpost*",
        "*cnn*",
        "*foxnews*",
        "*theblaze*",
        "*bbc*",
        "*espn*",
        "*ign*",
        "*gameinformer*",
        "*pinterest*",
        "*linkedin*",
        "*netflix*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "blocker.html"
  ],
  "icons": {
    "24": "logo.png",
    "48": "logo-48.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "https://ajax.googleapis.com/",
    "https://unpkg.com/[email protected]"
  ]
}