Free The Web

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

什么是Free The Web?

Free The Web是由https://unmorph.com开发的Chrome扩展程序,该扩展的主要功能是“Gets rid of cookie and privacy notifications across the web by hiding or accepting them.”。

扩展截图

screenshot

下载Free The Web扩展crx文件

下载Free The Web扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
官方URL https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
简介 Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
文件大小 128 KB
安装次数 55
当前版本 1.0.5
更新时间 2019-06-18
上架时间 2019-06-18
评分 5.00/5 共1次评分
开发者 https://unmorph.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://unmorph.com/free-the-web
帮助页面URL https://unmorph.com/free-the-web
支持的语言 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"
    }
}