YouTube Timestamper
Allows you to quickly copy current video/stream timestamp (with offset).
YouTube Timestamperとは何ですか?
YouTube TimestamperはIAmViscoによって開発されたChromeの拡張機能で、その主な機能は「Allows you to quickly copy current video/stream timestamp (with offset).」です。
拡張機能のスクリーンショット
YouTube Timestamper拡張機能のCRXファイルをダウンロード
YouTube Timestamper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A small utility tool that allows you to copy current video or stream timestamp. Icon by Iconpacks.
拡張機能の基本情報
名前 | YouTube Timestamper |
ID | fpjlholgdibolbjehinkkmbgodapojmp |
公式URL | https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp |
説明 | Allows you to quickly copy current video/stream timestamp (with offset). |
ファイルサイズ | 16.88 KB |
インストール数 | 82 |
現在のバージョン | 1.3.0 |
最終更新日 | 2023-06-21 |
公開日 | 2021-05-07 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | IAmVisco |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamper", "version": "1.3.0", "description": "Allows you to quickly copy current video\/stream timestamp (with offset).", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "YouTube Timestamper" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/live\/*" ], "js": [ "inject-button.js", "utils.js" ], "css": [ "button.css" ] } ], "options_ui": { "page": "settings\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |