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;

Το youtube.tracking.exposed είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tracking Exposed team, και η κύρια λειτουργία του είναι "A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης youtube.tracking.exposed

Λήψη αρχείων επέκτασης youtube.tracking.exposed σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα youtube.tracking.exposed youtube.tracking.exposed
ID kbbgjcgdcibilpahljnlejefcehbljnd
Επίσημο URL https://chrome.google.com/webstore/detail/youtubetrackingexposed/kbbgjcgdcibilpahljnlejefcehbljnd
Περιγραφή A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.
Μέγεθος Αρχείου 1.1 MB
Αριθμός Εγκαταστάσεων 273
Τρέχουσα Έκδοση 2.7.1
Τελευταία Ενημέρωση 2022-11-16
Ημερομηνία Δημοσίευσης 2020-06-20
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Tracking Exposed team
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://youtube.tracking.exposed
URL της Σελίδας Πολιτικής Απορρήτου https://facebook.tracking.exposed/privacy
Υποστηριζόμενες Γλώσσες 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"
    }
}