TC Manager

Manage consents to the processing of personal data at websites that use IAB Europe's TCF v2.0.

Что такое TC Manager?

TC Manager - это расширение Chrome, разработанное nesatfit, и его основная функция - "Manage consents to the processing of personal data at websites that use IAB Europe's TCF v2.0.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения TC Manager

Скачайте файлы расширений TC Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        You can display information about stored consent on websites that use IAB Europe's Transparency and Consent Framework v2.0 (TCF), so you can check if stored consent corresponds with your choices.

Also, you can predefine options for individual purposes, special features and for vendors registered in TCF. When you visit website that uses TCF, the extension will try to enforce consent based on your options to that website. Website is then added to the options, so you can set specific options for this single website.                    

Основная информация о расширении

Название TC Manager TC Manager
ID eomhmpifhbdlnomhcnmhkljeadjohjec
Официальный URL https://chromewebstore.google.com/detail/tc-manager/eomhmpifhbdlnomhcnmhkljeadjohjec
Описание Manage consents to the processing of personal data at websites that use IAB Europe's TCF v2.0.
Размер файла 822 KB
Количество установок 54
Текущая Версия 0.1.4
Последнее Обновление 2021-07-11
Дата публикации 2021-07-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик nesatfit
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки de,en,fr,nl,no,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,bg,ru,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "0.1.4",
    "author": "Ale\u0161 Postulka",
    "permissions": [
        "storage",
        "cookies",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "icons": {
        "48": "resources\/img\/icon-48.png",
        "64": "resources\/img\/icon-64.png",
        "96": "resources\/img\/icon-96.png",
        "128": "resources\/img\/icon-128.png",
        "256": "resources\/img\/icon-256.png",
        "512": "resources\/img\/icon-512.png"
    },
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "TC Manager",
        "default_icon": {
            "48": "resources\/img\/icon-48.png",
            "64": "resources\/img\/icon-64.png",
            "96": "resources\/img\/icon-96.png",
            "128": "resources\/img\/icon-128.png",
            "256": "resources\/img\/icon-256.png",
            "512": "resources\/img\/icon-512.png"
        }
    },
    "background": {
        "scripts": [
            "node_modules\/webextension-polyfill\/dist\/browser-polyfill.js",
            "node_modules\/tc-string-parse\/tc-string-parse.js",
            "common\/common.js",
            "common\/bit_field_conversion.js",
            "background_scripts\/consent_string_creation.js",
            "background_scripts\/web_request_listeners.js",
            "background_scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "node_modules\/webextension-polyfill\/dist\/browser-polyfill.js",
                "common\/common.js",
                "content_scripts\/inject.js",
                "content_scripts\/__tcfapi.js",
                "content_scripts\/local_storage.js",
                "content_scripts\/create_consent_request.js",
                "content_scripts\/message_listener.js"
            ]
        }
    ]
}