Simple Remove Element

Adds a context menu to remove an element from a page

O que é Simple Remove Element?

Simple Remove Element é uma extensão do Chrome desenvolvida por elfakyn, e sua principal característica é "Adds a context menu to remove an element from a page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Simple Remove Element

Baixe arquivos de extensão Simple Remove Element 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

                        Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone.

Extensions that can read data on all websites are scary. This extension is:

Open-source
Secure
Efficient
Auditable
As simple as can be
Designed with minimal permissions (still needs access to the active tab)

Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element                    

Informações Básicas da Extensão

Nome Simple Remove Element Simple Remove Element
ID mlfckaclcmmggacnimimmeepailfhokj
URL Oficial https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj
Descrição Adds a context menu to remove an element from a page
Tamanho do Arquivo 6.53 KB
Contagem de Instalações 21
Versão Atual 1.0.4
Última Atualização 2019-11-08
Data de Publicação 2019-11-05
Desenvolvedor elfakyn
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Remove Element",
    "short_name": "Remove Element",
    "version": "1.0.4",
    "description": "Adds a context menu to remove an element from a page",
    "manifest_version": 2,
    "icons": {
        "48": "remove_48.png",
        "128": "remove_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove_element.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'"
}