YouTube Views
Track your YouTube viewing activity
ما هو YouTube Views؟
YouTube Views هو إضافة Chrome تم تطويرها بواسطة yagrawl2، والميزة الرئيسية لها هي "Track your YouTube viewing activity".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Views
قم بتنزيل ملفات الامتداد YouTube Views بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A chrome extension to track your viewing activity on YouTube. It tracks metrics like 'number of videos watched', 'total number of views' and 'top 5 most watched videos'. Future iterations of the extension would include more tracking. All the data is stored on your browser and guarantees complete privacy.
معلومات أساسية عن التمديد
الاسم | YouTube Views |
ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
الوصف | Track your YouTube viewing activity |
حجم الملف | 186 KB |
عدد التثبيتات | 342 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2020-07-12 |
تاريخ النشر | 2020-07-12 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | yagrawl2 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Views", "version": "1.0.0", "description": "Track your YouTube viewing activity", "icons": { "128": "assets\/icons\/icon_128.png", "48": "assets\/icons\/icon_48.png", "16": "assets\/icons\/icon_16.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "app\/background.js" ], "persistent": true }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "app\/content.js" ], "css": [ "styles\/content.css" ] } ] } |