YouTube Bookmarker
Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
What is YouTube Bookmarker?
YouTube Bookmarker is a Chrome extension developed by bharat7gupta, and its main feature is "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc".
Extension Screenshots
Download YouTube Bookmarker Extension CRX File
Download YouTube Bookmarker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | YouTube Bookmarker |
ID | fnpjllldbpafaicnbgakpokibefgdeim |
Official URL | https://chromewebstore.google.com/detail/youtube-bookmarker/fnpjllldbpafaicnbgakpokibefgdeim |
Description | Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc |
File Size | 45.47 KB |
Installation Count | 641 |
Current Version | 1.1 |
Last Updated | 2020-03-25 |
Publish Date | 2020-03-25 |
Rating | 4.00/5 Total 4 Ratings |
Developer | bharat7gupta |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |