Free The Web

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

Что такое Free The Web?

Free The Web - это расширение Chrome, разработанное https://unmorph.com, и его основная функция - "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Free The Web

Скачайте файлы расширений 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"
    }
}