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!
Co to jest Delete Elements?
Delete Elements to rozszerzenie Chrome opracowane przez Kira L, a jego główną funkcją jest „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!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Delete Elements
Pobierz pliki rozszerzeń Delete Elements w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | egaeolhpclgmcegebneaibocfffkgode |
| Oficjalny URL | https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode |
| Opis | 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! |
| Rozmiar pliku | 7.14 KB |
| Liczba instalacji | 31 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2020-09-11 |
| Data Publikacji | 2020-09-11 |
| Deweloper | Kira L |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://kiraprograms.com |
| Adres URL Strony Pomocy | http://kiraprograms.com |
| Obsługiwane Języki | 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
} | |