Remove Element
Remove an HTML element from the context menu (right-click).
什么是Remove Element?
Remove Element是由atheimanksu开发的Chrome扩展程序,该扩展的主要功能是“Remove an HTML element from the context menu (right-click).”。
扩展截图
下载Remove Element扩展crx文件
下载Remove Element扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu. Extremely simple and efficient code is available at https://github.com/atheiman/remove-element
扩展基本信息
名称 | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
官方URL | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
简介 | Remove an HTML element from the context menu (right-click). |
文件大小 | 178 KB |
安装次数 | 363 |
当前版本 | 1.0 |
更新时间 | 2015-09-03 |
上架时间 | 2015-09-02 |
评分 | 2.00/5 共8次评分 |
开发者 | atheimanksu |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Element", "description": "Remove an HTML element from the context menu (right-click).", "version": "1.0", "author": "Austin Heiman", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/red-x-16.png", "48": "images\/red-x-48.png", "128": "images\/red-x-128.png" }, "background": { "scripts": [ "event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |