Simple Remove Element
Adds a context menu to remove an element from a page
Simple Remove Elementとは何ですか?
Simple Remove Elementはelfakynによって開発されたChromeの拡張機能で、その主な機能は「Adds a context menu to remove an element from a page」です。
拡張機能のスクリーンショット
Simple Remove Element拡張機能のCRXファイルをダウンロード
Simple Remove Element拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone. Extensions that can read data on all websites are scary. This extension is: Open-source Secure Efficient Auditable As simple as can be Designed with minimal permissions (still needs access to the active tab) Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element
拡張機能の基本情報
名前 | Simple Remove Element |
ID | mlfckaclcmmggacnimimmeepailfhokj |
公式URL | https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj |
説明 | Adds a context menu to remove an element from a page |
ファイルサイズ | 6.53 KB |
インストール数 | 21 |
現在のバージョン | 1.0.4 |
最終更新日 | 2019-11-08 |
公開日 | 2019-11-05 |
開発者 | elfakyn |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Remove Element", "short_name": "Remove Element", "version": "1.0.4", "description": "Adds a context menu to remove an element from a page", "manifest_version": 2, "icons": { "48": "remove_48.png", "128": "remove_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove_element.js" ], "run_at": "document_idle" } ], "permissions": [ "contextMenus", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'" } |