YouTube Views
Track your YouTube viewing activity
Apa itu YouTube Views?
YouTube Views adalah ekstensi Chrome yang dikembangkan oleh yagrawl2, dan fitur utamanya adalah "Track your YouTube viewing activity".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouTube Views
Unduh file ekstensi YouTube Views dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | YouTube Views |
ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
URL Resmi | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
Deskripsi | Track your YouTube viewing activity |
Ukuran File | 186 KB |
Jumlah Instalasi | 342 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2020-07-12 |
Tanggal Publikasi | 2020-07-12 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | yagrawl2 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |