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
官方網址 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"
    }
}