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 là gì?
youtube.tracking.exposed là một tiện ích mở rộng Chrome được phát triển bởi Tracking Exposed team, và tính năng chính của nó là "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng youtube.tracking.exposed
Tải xuống các tệp mở rộng youtube.tracking.exposed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | youtube.tracking.exposed |
ID | kbbgjcgdcibilpahljnlejefcehbljnd |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd |
Mô tả | A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal. |
Kích Thước Tệp | 1.1 MB |
Số Lần Cài Đặt | 273 |
Phiên Bản Hiện Tại | 2.7.1 |
Cập Nhật Lần Cuối | 2022-11-16 |
Ngày Phát Hành | 2020-06-20 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Tracking Exposed team |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://youtube.tracking.exposed |
URL Trang Chính Sách Bảo Mật | https://facebook.tracking.exposed/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |