tiktok.tracking.exposed

the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed

Что такое tiktok.tracking.exposed?

tiktok.tracking.exposed - это расширение Chrome, разработанное Tracking Exposed team, и его основная функция - "the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed".

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

screenshot

Скачать файл CRX расширения tiktok.tracking.exposed

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

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

                        A tool to perform passive analysis of TikTok recommendation algorithm, with the purpose of developing academic research on the topic of social media personalization                    

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

Название tiktok.tracking.exposed tiktok.tracking.exposed
ID bigbeiocbgkhndacjnkklogbilfchijf
Официальный URL https://chrome.google.com/webstore/detail/tiktoktrackingexposed/bigbeiocbgkhndacjnkklogbilfchijf
Описание the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed
Размер файла 1.1 MB
Количество установок 134
Текущая Версия 2.8.0
Последнее Обновление 2022-12-09
Дата публикации 2021-12-08
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Tracking Exposed team
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://tiktok.tracking.exposed
URL страницы политики конфиденциальности https://facebook.tracking.exposed/privacy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "tiktok.tracking.exposed",
    "short_name": "tktrex",
    "description": "the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https:\/\/docs.tracking.exposed",
    "version": "2.8.0",
    "author": "The Tracking Exposed team",
    "icons": {
        "16": "tktrex16.png",
        "48": "tktrex48.png",
        "128": "tktrex128.png"
    },
    "browser_action": {
        "default_icon": "tktrex16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "https:\/\/*.tiktok.com\/",
        "https:\/\/tiktok.tracking.exposed\/"
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tiktok.com\/*"
            ],
            "js": [
                ".\/injected.js",
                ".\/app.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "interceptor.js",
        "*.png",
        "settings.json"
    ]
}