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是由Tracking Exposed team开发的Chrome扩展程序,该扩展的主要功能是“the Tiktok Observatory addon! A tool for algorithm analysts of the popular entertainment app. Docs - https://docs.tracking.exposed”。
扩展截图
下载tiktok.tracking.exposed扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
]
} | |