YouTube Views

Track your YouTube viewing activity

What is YouTube Views?

YouTube Views is a Chrome extension developed by yagrawl2, and its main feature is "Track your YouTube viewing activity".

Extension Screenshots

screenshot

Download YouTube Views Extension CRX File

Download YouTube Views extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Views YouTube Views
ID nnhlpinbmbjmoofeifjibiipnbopahmg
Official URL https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg
Description Track your YouTube viewing activity
File Size 186 KB
Installation Count 342
Current Version 1.0.0
Last Updated 2020-07-12
Publish Date 2020-07-12
Rating 5.00/5 Total 1 Ratings
Developer yagrawl2
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}