Free The Web

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

Free The Web là gì?

Free The Web là một tiện ích mở rộng Chrome được phát triển bởi https://unmorph.com, và tính năng chính của nó là "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Free The Web

Tải xuống các tệp mở rộng Free The Web dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
URL Chính Thức https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
Mô tả Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
Kích Thước Tệp 128 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2019-06-18
Ngày Phát Hành 2019-06-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://unmorph.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://unmorph.com/free-the-web
URL Trang Trợ Giúp https://unmorph.com/free-the-web
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}