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.
Cos'è youtube.tracking.exposed?
youtube.tracking.exposed è un'estensione di Chrome sviluppata da Tracking Exposed team, e la sua funzione principale è "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione youtube.tracking.exposed
Scarica i file di estensione youtube.tracking.exposed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | youtube.tracking.exposed |
ID | kbbgjcgdcibilpahljnlejefcehbljnd |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd |
Descrizione | A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal. |
Dimensione del File | 1.1 MB |
Conteggio Installazioni | 273 |
Versione Corrente | 2.7.1 |
Ultimo Aggiornamento | 2022-11-16 |
Data di Pubblicazione | 2020-06-20 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Tracking Exposed team |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://youtube.tracking.exposed |
URL della Pagina della Politica sulla Privacy | https://facebook.tracking.exposed/privacy |
Lingue Supportate | 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" } } |