YouTube Views
Track your YouTube viewing activity
YouTube Viewsとは何ですか?
YouTube Viewsはyagrawl2によって開発されたChromeの拡張機能で、その主な機能は「Track your YouTube viewing activity」です。
拡張機能のスクリーンショット
YouTube Views拡張機能のCRXファイルをダウンロード
YouTube Views拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | YouTube Views |
ID | nnhlpinbmbjmoofeifjibiipnbopahmg |
公式URL | https://chromewebstore.google.com/detail/youtube-views/nnhlpinbmbjmoofeifjibiipnbopahmg |
説明 | Track your YouTube viewing activity |
ファイルサイズ | 186 KB |
インストール数 | 342 |
現在のバージョン | 1.0.0 |
最終更新日 | 2020-07-12 |
公開日 | 2020-07-12 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | yagrawl2 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } ] } |