Youtube Timestamp
Save youtube videos with exact timestamps for later.
Youtube Timestampとは何ですか?
Youtube Timestampはkirill17910によって開発されたChromeの拡張機能で、その主な機能は「Save youtube videos with exact timestamps for later.」です。
拡張機能のスクリーンショット
Youtube Timestamp拡張機能のCRXファイルをダウンロード
Youtube Timestamp拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them. This is an open source project, and all source code can be found on GitHub. https://github.com/kotikkir9/Youtube Changes: 27/12/2022 - Added new animated delete button.
拡張機能の基本情報
名前 | Youtube Timestamp |
ID | ciognandfojfcelnokkgaapgmafciekl |
公式URL | https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl |
説明 | Save youtube videos with exact timestamps for later. |
ファイルサイズ | 11.57 KB |
インストール数 | 179 |
現在のバージョン | 1.1 |
最終更新日 | 2022-12-28 |
公開日 | 2022-05-24 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | kirill17910 |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/kotikkir9/Youtube |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Timestamp", "description": "Save youtube videos with exact timestamps for later.", "version": "1.1", "manifest_version": 3, "background": { "service_worker": ".\/src\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" } }, "icons": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |