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 |
官方網址 | 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 |
電子郵箱 | [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" ] } ] } |