Spoiler Block
This extension will black out divs based on specific keywords
什么是Spoiler Block?
Spoiler Block是由millionhari开发的Chrome扩展程序,该扩展的主要功能是“This extension will black out divs based on specific keywords”。
扩展截图
下载Spoiler Block扩展crx文件
下载Spoiler Block扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | eicnikdpfimhiogckamkklnpligkifhm |
| 官方URL | https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm |
| 简介 | This extension will black out divs based on specific keywords |
| 文件大小 | 15.07 KB |
| 安装次数 | 290 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2016-05-07 |
| 上架时间 | 2016-05-06 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | millionhari |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
}
]
} | |