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'est-ce que youtube.tracking.exposed ?
youtube.tracking.exposed est une extension Chrome développée par Tracking Exposed team, et sa fonction principale est "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension youtube.tracking.exposed
Téléchargez les fichiers d'extension youtube.tracking.exposed au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | youtube.tracking.exposed |
ID | kbbgjcgdcibilpahljnlejefcehbljnd |
URL Officiel | https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd |
Description | A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal. |
Taille du Fichier | 1.1 MB |
Nombre d'Installations | 273 |
Version Actuelle | 2.7.1 |
Dernière Mise à Jour | 2022-11-16 |
Date de Publication | 2020-06-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Tracking Exposed team |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://youtube.tracking.exposed |
URL de la Page de Politique de Confidentialité | https://facebook.tracking.exposed/privacy |
Langues Prises en Charge | 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" } } |