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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}