TubeCount
Know how much you love a video by tracking your view count
TubeCountとは何ですか?
TubeCountはConsious Coderによって開発されたChromeの拡張機能で、その主な機能は「Know how much you love a video by tracking your view count」です。
拡張機能のスクリーンショット
TubeCount拡張機能のCRXファイルをダウンロード
TubeCount拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Minimal extension which count your youtube watch video watch count!
What's New?
- Fixed count doesn't show up on initial load. 拡張機能の基本情報
| 名前 | |
| ID | momlemehnehhcbainhhopndejeickcam |
| 公式URL | https://chromewebstore.google.com/detail/tubecount/momlemehnehhcbainhhopndejeickcam |
| 説明 | Know how much you love a video by tracking your view count |
| ファイルサイズ | 22.42 KB |
| インストール数 | 160 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2021-08-08 |
| 公開日 | 2021-07-14 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | Consious Coder |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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\/*"
]
} | |