Blur It Out
A simple extension that blurs out words you don't like
Blur It Outคืออะไร?
Blur It Out เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Procrastinating Student และคุณลักษณะหลักของมันคือ "A simple extension that blurs out words you don't like"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Blur It Out
ดาวน์โหลดไฟล์ส่วนขยาย Blur It Out ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Blurs our any text containing any user-specified blacklisted words. Mouseover the blurred lines to show the text. Update in Version 1.2: - You can now toggle whether the blur goes away on mouseover. Updates in Version 1.1: - Button to toggle blurring - Blurs entire object in feed usually now
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Blur It Out |
ID | aiocpnokjcmpelmlmekbjjblcompckhe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/blur-it-out/aiocpnokjcmpelmlmekbjjblcompckhe |
คำอธิบาย | A simple extension that blurs out words you don't like |
ขนาดไฟล์ | 49.38 KB |
จำนวนการติดตั้ง | 5,337 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2019-09-27 |
วันที่เผยแพร่ | 2019-09-27 |
คะแนน | 4.67/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | Procrastinating Student |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Blur It Out", "description": "A simple extension that blurs out words you don't like", "version": "1.2", "permissions": [ "storage", "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "mystyles.css" ], "js": [ "third-party\/jquery-1.12.0.min.js", "myscript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "icons": { "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Blur It Out Settings", "default_popup": "browser_action.html" }, "manifest_version": 2 } |