Delete Element
Adds option to context menu to quickly delete a page element
Delete Elementとは何ですか?
Delete Elementはlifeinweeksappによって開発されたChromeの拡張機能で、その主な機能は「Adds option to context menu to quickly delete a page element」です。
Delete Element拡張機能のCRXファイルをダウンロード
Delete Element拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds option to context menu to quickly delete a page element. Does NOT permanently delete the item. Use an ad-blocker for that.
拡張機能の基本情報
名前 | |
ID | aeafmlpmnmbckkaapajfhdmbbmdapngm |
公式URL | https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm |
説明 | Adds option to context menu to quickly delete a page element |
ファイルサイズ | 29.11 KB |
インストール数 | 53 |
現在のバージョン | 1.0.0 |
最終更新日 | 2018-05-14 |
公開日 | 2018-05-14 |
評価 | 3.33/5 合計 3 レビュー |
開発者 | lifeinweeksapp |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Delete Element", "description": "Adds option to context menu to quickly delete a page element", "version": "1.0.0", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab" ], "background": { "scripts": [ "script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |