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!

O que é Delete Elements?

Delete Elements é uma extensão do Chrome desenvolvida por Kira L, e sua principal característica é "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!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Delete Elements

Baixe arquivos de extensão Delete Elements no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Delete Elements Delete Elements
ID egaeolhpclgmcegebneaibocfffkgode
URL Oficial https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode
Descrição 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!
Tamanho do Arquivo 7.14 KB
Contagem de Instalações 31
Versão Atual 1.0
Última Atualização 2020-09-11
Data de Publicação 2020-09-11
Desenvolvedor Kira L
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://kiraprograms.com
URL da Página de Ajuda http://kiraprograms.com
Idiomas Suportados 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
}