YouTube Views

Track your YouTube viewing activity

YouTube Views là gì?

YouTube Views là một tiện ích mở rộng Chrome được phát triển bởi yagrawl2, và tính năng chính của nó là "Track your YouTube viewing activity".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Views

Tải xuống các tệp mở rộng YouTube Views dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Views YouTube Views
ID nnhlpinbmbjmoofeifjibiipnbopahmg
URL Chính Thức https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg
Mô tả Track your YouTube viewing activity
Kích Thước Tệp 186 KB
Số Lần Cài Đặt 342
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-07-12
Ngày Phát Hành 2020-07-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển yagrawl2
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}