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によって開発されたChromeの拡張機能で、その主な機能は「A tool for academic researchers. Part of the tracking.exposed project, is meant to analyze the algorithm of a popular video portal.」です。

拡張機能のスクリーンショット

screenshot
screenshot

youtube.tracking.exposed拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}