Youtube Timestamp Bookmarker
Bookmark the timestamp of a YouTube video to watch later
Youtube Timestamp Bookmarkerとは何ですか?
Youtube Timestamp BookmarkerはForever Impulse Techによって開発されたChromeの拡張機能で、その主な機能は「Bookmark the timestamp of a YouTube video to watch later」です。
拡張機能のスクリーンショット
Youtube Timestamp Bookmarker拡張機能のCRXファイルをダウンロード
Youtube Timestamp Bookmarker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to bookmark the timestamp of any YouTube video with one click. View your bookmarked YouTube videos by clicking the links in the extensions' pop-up window. This will save you the time and effort of having to remember where you stopped watching a video. Features: - Search bar - Update video titles - Sort by favorited videos and date - Light and dark mode toggle - Remove single or multiple videos from bookmark More features on the way!
拡張機能の基本情報
名前 | Youtube Timestamp Bookmarker |
ID | hdpcgcongdbbalkpifkdgmgifnoiddck |
公式URL | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/hdpcgcongdbbalkpifkdgmgifnoiddck |
説明 | Bookmark the timestamp of a YouTube video to watch later |
ファイルサイズ | 27.81 KB |
インストール数 | 722 |
現在のバージョン | 2.1.2 |
最終更新日 | 2022-11-17 |
公開日 | 2022-04-14 |
評価 | 4.75/5 合計 4 レビュー |
開発者 | Forever Impulse Tech |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Timestamp Bookmarker", "description": "Bookmark the timestamp of a YouTube video to watch later", "version": "2.1.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/ytb_icon.png", "32": "\/images\/ytb_icon.png", "48": "\/images\/ytb_icon.png", "128": "\/images\/ytb_icon.png" } }, "icons": { "16": "\/images\/ytb_icon.png", "32": "\/images\/ytb_icon.png", "48": "\/images\/ytb_icon.png", "128": "\/images\/ytb_icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "js": [ "options.js" ], "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "\/images\/bookmark.svg" ], "matches": [ " |