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 |
| 官方網址 | 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
} | |