Text Free Browsing

Hides all text on every website

What is Text Free Browsing?

Text Free Browsing is a Chrome extension developed by Jonas Lund, and its main feature is "Hides all text on every website".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Text Free Browsing Extension CRX File

Download Text Free Browsing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Text Free Browsing is an extension that can hide text while you surf the web. You can turn it on or off at any moment. 
An art project by Rafaël Rozendaal & Jonas Lund

For personal use only:
https://creativecommons.org/licenses/by-nc/4.0/

http://www.newrafael.com
http://www.jonaslund.biz                    

Extension Basic Information

Name Text Free Browsing Text Free Browsing
ID ioglfbphilinnhdmfbmfljmhemegfcdg
Official URL https://chromewebstore.google.com/detail/text-free-browsing/ioglfbphilinnhdmfbmfljmhemegfcdg
Description Hides all text on every website
File Size 13.24 KB
Installation Count 1,394
Current Version 4.1
Last Updated 2017-07-21
Publish Date 2017-07-21
Rating 4.69/5 Total 36 Ratings
Developer Jonas Lund
Payment Type free
Supported Languages en-US
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": {
        "48": "icon_48.png",
        "128": "icon_128.png",
        "16": "icon_16.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"
}