Text Free Browsing
Hides all text on every website
Text Free Browsingคืออะไร?
Text Free Browsing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonas Lund และคุณลักษณะหลักของมันคือ "Hides all text on every website"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Text Free Browsing
ดาวน์โหลดไฟล์ส่วนขยาย 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" } |