YouTube Views
Track your YouTube viewing activity
Co to jest YouTube Views?
YouTube Views to rozszerzenie Chrome opracowane przez yagrawl2, a jego główną funkcją jest „Track your YouTube viewing activity”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Views
Pobierz pliki rozszerzeń YouTube Views w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
| Oficjalny URL | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
| Opis | Track your YouTube viewing activity |
| Rozmiar pliku | 186 KB |
| Liczba instalacji | 342 |
| Aktualna Wersja | 1.0.0 |
| Ostatnia Aktualizacja | 2020-07-12 |
| Data Publikacji | 2020-07-12 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | yagrawl2 |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
}
]
} | |