YouTube Views
Track your YouTube viewing activity
Wat is YouTube Views?
YouTube Views is een Chrome-extensie ontwikkeld door yagrawl2, en de belangrijkste functie is "Track your YouTube viewing activity".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Views
Download YouTube Views-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
| Officiële URL | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
| Beschrijving | Track your YouTube viewing activity |
| Bestandsgrootte | 186 KB |
| Aantal Installaties | 342 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2020-07-12 |
| Publicatiedatum | 2020-07-12 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | yagrawl2 |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |