YouTube Views
Track your YouTube viewing activity
Was ist YouTube Views?
YouTube Views ist eine Chrome-Erweiterung, die von yagrawl2 entwickelt wurde, und ihr Hauptmerkmal ist "Track your YouTube viewing activity".
Erweiterungsscreenshots
YouTube Views-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Views-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | YouTube Views |
ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
Beschreibung | Track your YouTube viewing activity |
Dateigröße | 186 KB |
Installationsanzahl | 342 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2020-07-12 |
Veröffentlichungsdatum | 2020-07-12 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | yagrawl2 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |