YouTube Views
Track your YouTube viewing activity
Cos'è YouTube Views?
YouTube Views è un'estensione di Chrome sviluppata da yagrawl2, e la sua funzione principale è "Track your YouTube viewing activity".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Views
Scarica i file di estensione YouTube Views in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | YouTube Views |
ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
Descrizione | Track your YouTube viewing activity |
Dimensione del File | 186 KB |
Conteggio Installazioni | 342 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-07-12 |
Data di Pubblicazione | 2020-07-12 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | yagrawl2 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |