Free The Web

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

¿Qué es Free The Web?

Free The Web es una extensión de Chrome desarrollada por https://unmorph.com, y su función principal es "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Free The Web

Descarga archivos de extensión Free The Web en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
URL Oficial https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
Descripción Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
Tamaño del Archivo 128 KB
Cantidad de Instalaciones 55
Versión Actual 1.0.5
Última Actualización 2019-06-18
Fecha de Publicación 2019-06-18
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://unmorph.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://unmorph.com/free-the-web
URL de la Página de Ayuda https://unmorph.com/free-the-web
Idiomas Soportados 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"
    }
}