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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة youtube.tracking.exposed
قم بتنزيل ملفات الامتداد youtube.tracking.exposed بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة سياسة الخصوصية | 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" } } |