YOUTUBOOKMARK (Bookmark, YouTube, watch time)
It provides a function to bookmark the viewing time while watching YouTube videos.
What is YOUTUBOOKMARK (Bookmark, YouTube, watch time)?
YOUTUBOOKMARK (Bookmark, YouTube, watch time) is a Chrome extension developed by yhcho0405, and its main feature is "It provides a function to bookmark the viewing time while watching YouTube videos.".
Extension Screenshots
Download YOUTUBOOKMARK (Bookmark, YouTube, watch time) Extension CRX File
Download YOUTUBOOKMARK (Bookmark, YouTube, watch time) 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
You can bookmark the video segments you want!!
Extension Basic Information
Name | YOUTUBOOKMARK (Bookmark, YouTube, watch time) |
ID | fhbaihahknhibdhgddjnekoffmjbpikm |
Official URL | https://chromewebstore.google.com/detail/youtubookmark-bookmark-yo/fhbaihahknhibdhgddjnekoffmjbpikm |
Description | It provides a function to bookmark the viewing time while watching YouTube videos. |
File Size | 65.97 KB |
Installation Count | 53 |
Current Version | 1.0.2 |
Last Updated | 2020-02-04 |
Publish Date | 2020-02-04 |
Rating | 4.20/5 Total 5 Ratings |
Developer | yhcho0405 |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YOUTUBOOKMARK (Bookmark, YouTube, watch time)", "version": "1.0.2", "description": "It provides a function to bookmark the viewing time while watching YouTube videos.", "permissions": [ "activeTab", "tabs", "storage", "unlimitedStorage" ], "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "script.js" ] }, { "matches": [ "https:\/\/apis.google.com\/*" ], "all_frames": true, "js": [ "script.js" ] } ], "browser_action": { "default_icon": "icontt.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |