YouTube Bookmarker
Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
Qu'est-ce que YouTube Bookmarker ?
YouTube Bookmarker est une extension Chrome développée par bharat7gupta, et sa fonction principale est "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Bookmarker
Téléchargez les fichiers d'extension YouTube Bookmarker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | YouTube Bookmarker |
ID | fnpjllldbpafaicnbgakpokibefgdeim |
URL Officiel | 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 |
Taille du Fichier | 45.47 KB |
Nombre d'Installations | 641 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2020-03-25 |
Date de Publication | 2020-03-25 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | bharat7gupta |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |