Spoiler Block
This extension will black out divs based on specific keywords
Spoiler Block là gì?
Spoiler Block là một tiện ích mở rộng Chrome được phát triển bởi millionhari, và tính năng chính của nó là "This extension will black out divs based on specific keywords".
Ả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 Spoiler Block
Tải xuống các tệp mở rộng Spoiler Block 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
Browse the internet free of spoilers! The Spoiler Block extension will censor any keyword match with a black blob instead of blocking the whole page. Click the Spoiler Block icon to get started. Upcoming features: - Community driven packages - Anagram block What's new in v.1.0.2 - Fixed bug to run script when page is altered in any way
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spoiler Block |
ID | eicnikdpfimhiogckamkklnpligkifhm |
URL Chính Thức | https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm |
Mô tả | This extension will black out divs based on specific keywords |
Kích Thước Tệp | 15.07 KB |
Số Lần Cài Đặt | 290 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2016-05-07 |
Ngày Phát Hành | 2016-05-06 |
Đánh Giá | 3.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | millionhari |
[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", "manifest_version": 2, "author": "Michael Hari", "name": "Spoiler Block", "description": "This extension will black out divs based on specific keywords", "version": "1.0.2", "permissions": [ "storage", "tabs" ], "options_page": "\/options\/spoiler_block_options.html", "background": { "scripts": [ "\/backgroundpage\/background.js" ] }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Spoiler Block" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "\/styles\/style.css" ], "js": [ "\/scripts\/app.js" ] } ] } |