Nuke anything reloaded
Allows you to hide almost anything via context menu.
什么是Nuke anything reloaded?
Nuke anything reloaded是由redgizmo75开发的Chrome扩展程序,该扩展的主要功能是“Allows you to hide almost anything via context menu.”。
扩展截图
下载Nuke anything reloaded扩展crx文件
下载Nuke anything reloaded扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to hide almost any object on a web page. Just right click on the object you want to disappear and chose 'Remove this object' from context menu. You can remove as many objects as you want and you can restore the objects again. Removal is only temporary, if you reload the page everything is as it was. Nothing is stored by this extension. This extension is inspired by 'Nuke anyhting (enhanced)' addon for FF. SourceCode can be found on GitHub: https://github.com/redgizmo75/nuke_anything_reloaded
扩展基本信息
名称 | Nuke anything reloaded |
ID | pfmoigombklcdimgnlmhmohjdihgdmdc |
官方URL | https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc |
简介 | Allows you to hide almost anything via context menu. |
文件大小 | 34.68 KB |
安装次数 | 495 |
当前版本 | 1.0 |
更新时间 | 2017-09-16 |
上架时间 | 2017-09-16 |
评分 | 2.60/5 共5次评分 |
开发者 | redgizmo75 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0", "default_locale": "en", "permissions": [ "contextMenus" ], "icons": { "16": "icon_nuke_16.png", "128": "icon_nuke_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "content_script.js" ] } ], "background": { "scripts": [ "background.js" ] } } |