Delete Element
Adds option to context menu to quickly delete a page element
什么是Delete Element?
Delete Element是由lifeinweeksapp开发的Chrome扩展程序,该扩展的主要功能是“Adds option to context menu to quickly delete a page element”。
下载Delete Element扩展crx文件
下载Delete Element扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds option to context menu to quickly delete a page element.
Does NOT permanently delete the item. Use an ad-blocker for that. 扩展基本信息
| 名称 | |
| ID | aeafmlpmnmbckkaapajfhdmbbmdapngm |
| 官方URL | https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm |
| 简介 | Adds option to context menu to quickly delete a page element |
| 文件大小 | 29.11 KB |
| 安装次数 | 53 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2018-05-14 |
| 上架时间 | 2018-05-14 |
| 评分 | 3.33/5 共3次评分 |
| 开发者 | lifeinweeksapp |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Delete Element",
"description": "Adds option to context menu to quickly delete a page element",
"version": "1.0.0",
"manifest_version": 2,
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"scripts": [
"script.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"128": "icon.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |