TubeMark
Bookmark and take notes on YouTube timeline.
TubeMarkとは何ですか?
TubeMarkはchaosifierによって開発されたChromeの拡張機能で、その主な機能は「Bookmark and take notes on YouTube timeline.」です。
拡張機能のスクリーンショット
TubeMark拡張機能のCRXファイルをダウンロード
TubeMark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
拡張機能の基本情報
名前 | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
公式URL | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
説明 | Bookmark and take notes on YouTube timeline. |
ファイルサイズ | 91.5 KB |
インストール数 | 22 |
現在のバージョン | 1.0.1 |
最終更新日 | 2020-11-17 |
公開日 | 2020-11-13 |
評価 | 3.25/5 合計 4 レビュー |
開発者 | chaosifier |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/chaosifier/TubeMark |
ヘルプページのURL | https://github.com/chaosifier/TubeMark/issues |
プライバシーポリシーページのURL | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TubeMark", "description": "Bookmark and take notes on YouTube timeline.", "version": "1.0.1", "author": "Sagar Dahal", "browser_action": { "default_icon": "ic_launcher.png", "default_title": "TubeMark" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "256": "ic_launcher.png" }, "web_accessible_resources": [ "mainPage.html" ] } |