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" } |