Remove Element
Creates a contextual menu item to remove an element from the DOM
Apa itu Remove Element?
Remove Element adalah ekstensi Chrome yang dikembangkan oleh https://weilstreet.com, dan fitur utamanya adalah "Creates a contextual menu item to remove an element from the DOM".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Remove Element
Unduh file ekstensi Remove Element dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary. After installation you must reload any open pages for the extension to work.
Informasi Dasar Ekstensi
Nama | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
URL Resmi | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
Deskripsi | Creates a contextual menu item to remove an element from the DOM |
Ukuran File | 6.35 KB |
Jumlah Instalasi | 2,523 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2018-09-05 |
Tanggal Publikasi | 2018-09-04 |
Penilaian | 3.94/5 Total 32 Penilaian |
Pengembang | https://weilstreet.com |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove Element", "version": "1.0.2", "description": "Creates a contextual menu item to remove an element from the DOM", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove.js" ] } ] } |