TubeCount
Know how much you love a video by tracking your view count
What is TubeCount?
TubeCount is a Chrome extension developed by Consious Coder, and its main feature is "Know how much you love a video by tracking your view count".
Extension Screenshots
Download TubeCount Extension CRX File
Download TubeCount 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
Minimal extension which count your youtube watch video watch count! What's New? - Fixed count doesn't show up on initial load.
Extension Basic Information
Name | TubeCount |
ID | momlemehnehhcbainhhopndejeickcam |
Official URL | https://chromewebstore.google.com/detail/tubecount/momlemehnehhcbainhhopndejeickcam |
Description | Know how much you love a video by tracking your view count |
File Size | 22.42 KB |
Installation Count | 160 |
Current Version | 1.0.2 |
Last Updated | 2021-08-08 |
Publish Date | 2021-07-14 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Consious Coder |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TubeCount", "version": "1.0.2", "manifest_version": 3, "description": "Know how much you love a video by tracking your view count", "icons": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "16": ".\/icons\/16.png" }, "action": { "default_icon": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "16": ".\/icons\/16.png" } }, "content_scripts": [ { "js": [ ".\/js\/content.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ ".\/content.css" ] } ], "background": { "service_worker": "bg-wrapper.js" }, "permissions": [ "storage", "webNavigation" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |