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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में youtube.tracking.exposed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}