Filter Remover
Bring color back to website. In case of async content loading. click on icon again to run script manually.
Filter Removerคืออะไร?
Filter Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pesticide และคุณลักษณะหลักของมันคือ "Bring color back to website. In case of async content loading. click on icon again to run script manually."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Filter Remover
ดาวน์โหลดไฟล์ส่วนขยาย Filter Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Bring color back to website. It remove filter: grayscale automatically when page load. In case of asynchronous content loading, please click icon again to run it manually. Support old chrome version with webkit.Filter
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Filter Remover |
ID | bfebennjaidcjckomeokmaeieoidhieb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb |
คำอธิบาย | Bring color back to website. In case of async content loading. click on icon again to run script manually. |
ขนาดไฟล์ | 19.7 KB |
จำนวนการติดตั้ง | 80 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2016-10-19 |
วันที่เผยแพร่ | 2016-10-19 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Pesticide |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | th |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Filter Remover", "description": "Bring color back to website. In case of async content loading. click on icon again to run script manually.", "version": "1.1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png", "default_title": "click here to run color script manually." }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [ "activeTab" ] } |