youtube.tracking.exposed
A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.
什么是youtube.tracking.exposed?
youtube.tracking.exposed是由Tracking Exposed team开发的Chrome扩展程序,该扩展的主要功能是“A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.”。
扩展截图
下载youtube.tracking.exposed扩展crx文件
下载youtube.tracking.exposed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
https://youtube.tracking.exposed is a tool developed for academic and research purposes; it keeps track of the personalization effects of YouTube and allows you to download CSV files, filled with videos selected, that describe your personalization. 扩展基本信息
| 名称 | |
| ID | kbbgjcgdcibilpahljnlejefcehbljnd |
| 官方URL | https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd |
| 简介 | A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal. |
| 文件大小 | 1.1 MB |
| 安装次数 | 273 |
| 当前版本 | 2.7.1 |
| 更新时间 | 2022-11-16 |
| 上架时间 | 2020-06-20 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Tracking Exposed team |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://youtube.tracking.exposed |
| 隐私政策页面URL | https://facebook.tracking.exposed/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "youtube.tracking.exposed",
"short_name": "ytTREX",
"description": "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.",
"version": "2.7.1",
"author": "the Tracking Exposed team",
"icons": {
"16": "yttrex16.png",
"48": "yttrex48.png",
"128": "yttrex128.png"
},
"browser_action": {
"default_icon": "yttrex16.png",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"https:\/\/*.youtube.com\/",
"https:\/\/youtube.tracking.exposed\/"
],
"background": {
"scripts": [
".\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
".\/app.js"
]
}
],
"web_accessible_resources": [
"*.png",
"settings.json",
"experiment\/name.json",
"experiment\/*.csv"
],
"cross_origin_embedder_policy": {
"value": "require-corp"
},
"cross_origin_opener_policy": {
"value": "same-origin"
}
} | |