Text Free Browsing
Hides all text on every website
Qu'est-ce que Text Free Browsing ?
Text Free Browsing est une extension Chrome développée par Jonas Lund, et sa fonction principale est "Hides all text on every website".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Text Free Browsing
Téléchargez les fichiers d'extension Text Free Browsing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ioglfbphilinnhdmfbmfljmhemegfcdg |
URL Officiel | https://chromewebstore.google.com/detail/text-free-browsing/ioglfbphilinnhdmfbmfljmhemegfcdg |
Description | Hides all text on every website |
Taille du Fichier | 13.24 KB |
Nombre d'Installations | 1,394 |
Version Actuelle | 4.1 |
Dernière Mise à Jour | 2017-07-21 |
Date de Publication | 2017-07-21 |
Évaluation | 4.69/5 Total 36 Évaluations |
Développeur | Jonas Lund |
Type de Paiement | free |
Langues Prises en Charge | 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" } |