Let Me Out

Prevents actions (like alerts) when navigating away from a page.

O que é Let Me Out?

Let Me Out é uma extensão do Chrome desenvolvida por https://tedbigham.blogspot.com, e sua principal característica é "Prevents actions (like alerts) when navigating away from a page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Let Me Out

Baixe arquivos de extensão Let Me Out 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

                        This extension blocks popup messages like "Are you sure you want to leave this page?" when navigating away from some sites.

Feel free to leave feedback for sites this doesn't work on.  I'll try to update new versions to deal with new techniques.                    

Informações Básicas da Extensão

Nome Let Me Out Let Me Out
ID hnfdibcbmlppjlkefinedeffoiomlecc
URL Oficial https://chromewebstore.google.com/detail/let-me-out/hnfdibcbmlppjlkefinedeffoiomlecc
Descrição Prevents actions (like alerts) when navigating away from a page.
Tamanho do Arquivo 4.26 KB
Contagem de Instalações 10,903
Versão Atual 1.3
Última Atualização 2015-01-27
Data de Publicação 2015-01-27
Classificação 3.94/5 Total de 66 Avaliações
Desenvolvedor https://tedbigham.blogspot.com
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Let Me Out",
    "short_name": "letmeout",
    "description": "Prevents actions (like alerts) when navigating away from a page.",
    "version": "1.3",
    "web_accessible_resources": [
        "before.inject.js",
        "after.inject.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "before.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "after.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}