Block WebFonts

Block WebFonts and replace it with Arial/Tahoma/Helvetica and Terminus (TTF)/Lucida Console/Consolas.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Block WebFonts",
  "short_name": "BlockWebFonts",
  "version": "1.1",
  "description": "Block WebFonts and replace it with Arial/Tahoma/Helvetica and Terminus (TTF)/Lucida Console/Consolas.",
  "manifest_version": 2,
  "author": "Grand Silence",
  "homepage_url": "https://github.com/grandsilence/BlockWebFonts",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "64": "images/icon_64.png",
    "128": "images/icon_128.png",
    "256": "images/icon_256.png",
    "512": "images/icon_512.png"
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "listener.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ]
}