Nuke anything reloaded
Allows you to hide almost anything via context menu.
What is Nuke anything reloaded?
Nuke anything reloaded is a Chrome extension developed by redgizmo75, and its main feature is "Allows you to hide almost anything via context menu.".
Extension Screenshots
Download Nuke anything reloaded Extension CRX File
Download Nuke anything reloaded extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Nuke anything reloaded |
ID | pfmoigombklcdimgnlmhmohjdihgdmdc |
Official URL | https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc |
Description | Allows you to hide almost anything via context menu. |
File Size | 34.68 KB |
Installation Count | 495 |
Current Version | 1.0 |
Last Updated | 2017-09-16 |
Publish Date | 2017-09-16 |
Rating | 2.60/5 Total 5 Ratings |
Developer | redgizmo75 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } } |