Text Free Browsing

Text Free Browsing

Hides all text on every website

Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "text-yes.png",
    "name": "Start Text Free Browsing",
    "icons": [
      "text-yes.png",
      "text-no.png"
    ]
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Hides all text on every website",
  "background": {
    "page": "index.html"
  },
  "name": "Text Free Browsing",
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "homepage_url": "http://www.newrafael.com/text-free-browsing",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "check.js"
      ],
      "css": [
        "hides.css"
      ]
    },
    {
      "matches": [
        "*://chrome.google.com/webstore*"
      ],
      "css": [
        "shows.css"
      ]
    }
  ],
  "manifest_version": 2,
  "version": "4.1"
}