Youtube Bookmarker
Saving timestamps in youtube videos
Youtube Bookmarkerとは何ですか?
Youtube BookmarkerはAdham Niazyによって開発されたChromeの拡張機能で、その主な機能は「Saving timestamps in youtube videos」です。
拡張機能のスクリーンショット
Youtube Bookmarker拡張機能のCRXファイルをダウンロード
Youtube Bookmarker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will help you bookmarking any second on any YouTube video by just clicking on the plus button that will appear on any YouTube video player.
拡張機能の基本情報
名前 | Youtube Bookmarker |
ID | ajfngclcoacjmcadbcchfmhiiafegabp |
公式URL | https://chromewebstore.google.com/detail/youtube-bookmarker/ajfngclcoacjmcadbcchfmhiiafegabp |
説明 | Saving timestamps in youtube videos |
ファイルサイズ | 260 KB |
インストール数 | 127 |
現在のバージョン | 1.0.0 |
最終更新日 | 2022-07-06 |
公開日 | 2022-07-05 |
評価 | 4.60/5 合計 10 レビュー |
開発者 | Adham Niazy |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Bookmarker", "version": "1.0.0", "description": "Saving timestamps in youtube videos", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "Youtube Bookmarker", "default_popup": "popup.html" }, "manifest_version": 3 } |