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.
O que é youtube.tracking.exposed?
youtube.tracking.exposed é uma extensão do Chrome desenvolvida por Tracking Exposed team, e sua principal característica é "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão youtube.tracking.exposed
Baixe arquivos de extensão youtube.tracking.exposed no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | youtube.tracking.exposed |
ID | kbbgjcgdcibilpahljnlejefcehbljnd |
URL Oficial | https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd |
Descrição | A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal. |
Tamanho do Arquivo | 1.1 MB |
Contagem de Instalações | 273 |
Versão Atual | 2.7.1 |
Última Atualização | 2022-11-16 |
Data de Publicação | 2020-06-20 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Tracking Exposed team |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://youtube.tracking.exposed |
URL da Página de Política de Privacidade | https://facebook.tracking.exposed/privacy |
Idiomas Suportados | 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" } } |