tiktok.tracking.exposed
the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed
Co to jest tiktok.tracking.exposed?
tiktok.tracking.exposed to rozszerzenie Chrome opracowane przez Tracking Exposed team, a jego główną funkcją jest „the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia tiktok.tracking.exposed
Pobierz pliki rozszerzeń tiktok.tracking.exposed w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A tool to perform passive analysis of TikTok recommendation algorithm, with the purpose of developing academic research on the topic of social media personalization
Podstawowe informacje o rozszerzeniu
Nazwa | tiktok.tracking.exposed |
ID | bigbeiocbgkhndacjnkklogbilfchijf |
Oficjalny URL | https://chrome.google.com/webstore/detail/tiktoktrackingexposed/bigbeiocbgkhndacjnkklogbilfchijf |
Opis | the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed |
Rozmiar pliku | 1.1 MB |
Liczba instalacji | 134 |
Aktualna Wersja | 2.8.0 |
Ostatnia Aktualizacja | 2022-12-09 |
Data Publikacji | 2021-12-08 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Tracking Exposed team |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://tiktok.tracking.exposed |
Adres URL Strony Polityki Prywatności | https://facebook.tracking.exposed/privacy |
Obsługiwane Języki | 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" ] } |