Text Free Browsing

Hides all text on every website

ما هو Text Free Browsing؟

Text Free Browsing هو إضافة Chrome تم تطويرها بواسطة Jonas Lund، والميزة الرئيسية لها هي "Hides all text on every website".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Text Free Browsing

قم بتنزيل ملفات الامتداد Text Free Browsing بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
}