Remove This
Allows the user to remove elements from a website page
什么是Remove This?
Remove This是由fcarreto开发的Chrome扩展程序,该扩展的主要功能是“Allows the user to remove elements from a website page”。
扩展截图
下载Remove This扩展crx文件
下载Remove This扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Say goodbye to that popup that just want your email address... 扩展基本信息
| 名称 | |
| ID | hkopachcfphcdeofdcdamheibmfedgkb |
| 官方URL | https://chrome.google.com/webstore/detail/remove-this/hkopachcfphcdeofdcdamheibmfedgkb |
| 简介 | Allows the user to remove elements from a website page |
| 文件大小 | 116 KB |
| 安装次数 | 129 |
| 当前版本 | 1.0 |
| 更新时间 | 2014-11-11 |
| 上架时间 | 2014-11-11 |
| 评分 | 3.29/5 共7次评分 |
| 开发者 | fcarreto |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Remove This",
"description": "Allows the user to remove elements from a website page",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"version": "1.0",
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"jquery-1.11.1.min.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"browser_action": {
"default_title": "Remove This",
"default_icon": "target.png"
},
"manifest_version": 2
} | |