Blur It Out
A simple extension that blurs out words you don't like
Blur It Out là gì?
Blur It Out là một tiện ích mở rộng Chrome được phát triển bởi Procrastinating Student, và tính năng chính của nó là "A simple extension that blurs out words you don't like".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Blur It Out
Tải xuống các tệp mở rộng Blur It Out dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Blur It Out |
ID | aiocpnokjcmpelmlmekbjjblcompckhe |
URL Chính Thức | https://chromewebstore.google.com/detail/blur-it-out/aiocpnokjcmpelmlmekbjjblcompckhe |
Mô tả | A simple extension that blurs out words you don't like |
Kích Thước Tệp | 49.38 KB |
Số Lần Cài Đặt | 5,337 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2019-09-27 |
Ngày Phát Hành | 2019-09-27 |
Đánh Giá | 4.67/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | Procrastinating Student |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |