Ignore Google Scripts

Ignore Google Scripts

Ignore Google scripts and route Google CDN to Cloudflare.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "author": "Terry Yuen",
  "version": "0.1.7",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "icon_16.png",
    "38": "icon_38.png",
    "48": "icon_48.png",
    "96": "icon_96.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icon_16.png",
      "38": "icon_38.png",
      "48": "icon_48.png"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}