Click-to-hide

Hide elements on page by clicking on them.

O que é Click-to-hide?

Click-to-hide é uma extensão do Chrome desenvolvida por http://mattconn.io, e sua principal característica é "Hide elements on page by clicking on them.".

Baixar o arquivo CRX da Extensão Click-to-hide

Baixe arquivos de extensão Click-to-hide 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

                        # Click-to-hide
Chrome extension to delete element on page by clicking on it. Useful for ads and other page blocking elements.

## To Use:
Click on the Click-to-hide icon to enable the extension. You will know that the extension is enabled when you see your cursor appear as a crosshair. The script will then be enabled for one click at a time.

Cick on any element on the page to effectively remove or hide it. To remove another element on the page, click on the extension icon again to re-enable, and repeat this process for any remaining elements on the page that you wish to remove.                    

Informações Básicas da Extensão

Nome Click-to-hide Click-to-hide
ID lcdicpnpgjfaodmccefekkfecadllbjg
URL Oficial https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg
Descrição Hide elements on page by clicking on them.
Tamanho do Arquivo 5.16 KB
Contagem de Instalações 127
Versão Atual 1.0.1
Última Atualização 2018-02-13
Data de Publicação 2018-02-13
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor http://mattconn.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mattConn/chrome-click-to-hide
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click-to-hide",
    "description": "Hide elements on page by clicking on them.",
    "version": "1.0.1",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Click-to-hide"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}