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
Eメール [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"
    }
}