Free The Web

Gets rid of cookie and privacy notifications across the web by hiding or accepting them.

O que é Free The Web?

Free The Web é uma extensão do Chrome desenvolvida por https://unmorph.com, e sua principal característica é "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Free The Web

Baixe arquivos de extensão Free The Web 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 allows users to hide or auto-accept privacy and cookie notifications while browsing. Both behaviors are configurable by the user.

This extension embraces the need for protecting the privacy of users across the Internet; it is aimed at helping those who are already aware of existing policies to increase their productivity by decluttering their browsing experience.                    

Informações Básicas da Extensão

Nome Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
URL Oficial https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
Descrição Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
Tamanho do Arquivo 128 KB
Contagem de Instalações 55
Versão Atual 1.0.5
Última Atualização 2019-06-18
Data de Publicação 2019-06-18
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://unmorph.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://unmorph.com/free-the-web
URL da Página de Ajuda https://unmorph.com/free-the-web
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Free The Web",
    "description": "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/*.json"
    ],
    "version": "1.0.5",
    "author": "Victor Pascu",
    "browser_action": {
        "default_title": "Free The Web",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persisent": false
    },
    "icons": {
        "128": "\/img\/icon-default-128.png"
    }
}