Delete Elements
Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!
Delete Elementsとは何ですか?
Delete ElementsはKira Lによって開発されたChromeの拡張機能で、その主な機能は「Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!」です。
拡張機能のスクリーンショット
Delete Elements拡張機能のCRXファイルをダウンロード
Delete Elements拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
My chrome extension allows you to delete any element that you don't want to see on a website using alt+click. After installing this extension, you can focus on the content of a website, instead of the navigation bars, side-bars, and unwanted images. Enjoy! 拡張機能の基本情報
| 名前 | |
| ID | egaeolhpclgmcegebneaibocfffkgode |
| 公式URL | https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode |
| 説明 | Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see! |
| ファイルサイズ | 7.14 KB |
| インストール数 | 31 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2020-09-11 |
| 公開日 | 2020-09-11 |
| 開発者 | Kira L |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://kiraprograms.com |
| ヘルプページのURL | http://kiraprograms.com |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Delete Elements",
"version": "1.0",
"description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!",
"permissions": [],
"page_action": {
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"add_to_website.js"
]
}
],
"manifest_version": 2
} | |