Text Free Browsing

Hides all text on every website

Text Free Browsing란 무엇입니까?

Text Free Browsing은(는) Jonas Lund에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides all text on every website"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Text Free Browsing 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Text Free Browsing Text Free Browsing
ID ioglfbphilinnhdmfbmfljmhemegfcdg
공식 URL https://chromewebstore.google.com/detail/text-free-browsing/ioglfbphilinnhdmfbmfljmhemegfcdg
설명 Hides all text on every website
파일 크기 13.24 KB
설치 횟수 1,394
현재 버전 4.1
최근 업데이트 2017-07-21
출시 날짜 2017-07-21
평점 4.69/5 총 36 개의 평점
개발자 Jonas Lund
결제 유형 free
지원되는 언어 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"
}