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 |
Eメール | [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" ] } } |