Nuke anything reloaded
Allows you to hide almost anything via context menu.
Vad är Nuke anything reloaded?
Nuke anything reloaded är en Chrome-tillägg utvecklad av redgizmo75, och dess huvudfunktion är "Allows you to hide almost anything via context menu.".
Tilläggsskärmbilder
Ladda ner Nuke anything reloaded-förlängningens CRX-fil
Ladda ner Nuke anything reloaded-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Nuke anything reloaded |
ID | pfmoigombklcdimgnlmhmohjdihgdmdc |
Officiell webbadress | https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc |
Beskrivning | Allows you to hide almost anything via context menu. |
Filstorlek | 34.68 KB |
Antal Installationer | 495 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-09-16 |
Publiceringsdatum | 2017-09-16 |
Betyg | 2.60/5 Totalt 5 Betyg |
Utvecklare | redgizmo75 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } } |