YouTube Views

Track your YouTube viewing activity

Vad är YouTube Views?

YouTube Views är en Chrome-tillägg utvecklad av yagrawl2, och dess huvudfunktion är "Track your YouTube viewing activity".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Views-förlängningens CRX-fil

Ladda ner YouTube Views-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn YouTube Views YouTube Views
ID nnhlpinbmbjmoofeifjibiipnbopahmg
Officiell webbadress https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg
Beskrivning Track your YouTube viewing activity
Filstorlek 186 KB
Antal Installationer 342
Aktuell Version 1.0.0
Senast Uppdaterad 2020-07-12
Publiceringsdatum 2020-07-12
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare yagrawl2
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}