Youtube Bookmarker
Saving timestamps in youtube videos
What is Youtube Bookmarker?
Youtube Bookmarker is a Chrome extension developed by Adham Niazy, and its main feature is "Saving timestamps in youtube videos".
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
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.
Extension Basic Information
Name | Youtube Bookmarker |
ID | ajfngclcoacjmcadbcchfmhiiafegabp |
Official URL | https://chromewebstore.google.com/detail/youtube-bookmarker/ajfngclcoacjmcadbcchfmhiiafegabp |
Description | Saving timestamps in youtube videos |
File Size | 260 KB |
Installation Count | 127 |
Current Version | 1.0.0 |
Last Updated | 2022-07-06 |
Publish Date | 2022-07-05 |
Rating | 4.60/5 Total 10 Ratings |
Developer | Adham Niazy |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |