Text Free Browsing
Hides all text on every website
Text Free Browsingとは何ですか?
Text Free BrowsingはJonas Lundによって開発されたChromeの拡張機能で、その主な機能は「Hides all text on every website」です。
拡張機能のスクリーンショット
Text Free Browsing拡張機能のCRXファイルをダウンロード
Text Free Browsing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
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" } |