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.
¿Qué es youtube.tracking.exposed?
youtube.tracking.exposed es una extensión de Chrome desarrollada por Tracking Exposed team, y su función principal es "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión youtube.tracking.exposed
Descarga archivos de extensión youtube.tracking.exposed en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | youtube.tracking.exposed |
ID | kbbgjcgdcibilpahljnlejefcehbljnd |
URL Oficial | https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd |
Descripción | A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal. |
Tamaño del Archivo | 1.1 MB |
Cantidad de Instalaciones | 273 |
Versión Actual | 2.7.1 |
Última Actualización | 2022-11-16 |
Fecha de Publicación | 2020-06-20 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Tracking Exposed team |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://youtube.tracking.exposed |
URL de la Página de Política de Privacidad | https://facebook.tracking.exposed/privacy |
Idiomas Soportados | 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" } } |