Text Free Browsing
Hides all text on every website
Cos'è Text Free Browsing?
Text Free Browsing è un'estensione di Chrome sviluppata da Jonas Lund, e la sua funzione principale è "Hides all text on every website".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Text Free Browsing
Scarica i file di estensione Text Free Browsing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ioglfbphilinnhdmfbmfljmhemegfcdg |
URL Ufficiale | https://chromewebstore.google.com/detail/text-free-browsing/ioglfbphilinnhdmfbmfljmhemegfcdg |
Descrizione | Hides all text on every website |
Dimensione del File | 13.24 KB |
Conteggio Installazioni | 1,394 |
Versione Corrente | 4.1 |
Ultimo Aggiornamento | 2017-07-21 |
Data di Pubblicazione | 2017-07-21 |
Valutazione | 4.69/5 Totale 36 Valutazioni |
Sviluppatore | Jonas Lund |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |