YouTube Bookmarker
Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
YouTube Bookmarkerとは何ですか?
YouTube Bookmarkerはbharat7guptaによって開発されたChromeの拡張機能で、その主な機能は「Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc」です。
拡張機能のスクリーンショット
YouTube Bookmarker拡張機能のCRXファイルをダウンロード
YouTube Bookmarker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Add bookmarks to YouTube videos and get easier access to the bookmarks on subsequent access to those videos. User of this extension can edit/add a meaningful description to each bookmark to make the bookmarks legible and get quicker overview of different important points in a YouTube video.
User can also start playback of video from a bookmark, copy and share link of a bookmark to enable playback from that point of the video and also delete bookmarks if its not needed anymore. All of this from a single extension popup. 拡張機能の基本情報
| 名前 | |
| ID | fnpjllldbpafaicnbgakpokibefgdeim |
| 公式URL | https://chromewebstore.google.com/detail/youtube-bookmarker/fnpjllldbpafaicnbgakpokibefgdeim |
| 説明 | Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc |
| ファイルサイズ | 45.47 KB |
| インストール数 | 641 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2020-03-25 |
| 公開日 | 2020-03-25 |
| 評価 | 4.00/5 合計 4 レビュー |
| 開発者 | bharat7gupta |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Bookmarker",
"version": "1.1",
"description": "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc",
"permissions": [
"storage",
"tabs",
"https:\/\/*.youtube.com\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
"styles.css"
],
"js": [
"contentScript.js",
"common.js"
]
}
],
"web_accessible_resources": [
"icons\/bookmark.png",
"icons\/edit.png",
"icons\/play.png",
"icons\/copy-link.png",
"icons\/delete.png",
"icons\/save.png"
],
"browser_action": {
"default_icon": {
"16": "icons\/youtube-bookmarker-32.png",
"24": "icons\/youtube-bookmarker-32.png",
"32": "icons\/youtube-bookmarker-32.png"
},
"default_title": "YouTube Bookmarker",
"default_popup": "popup.html"
},
"manifest_version": 2
} | |