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.
擴展基本資訊
名稱 | youtube.tracking.exposed |
ID | kbbgjcgdcibilpahljnlejefcehbljnd |
官方網址 | 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" } } |