YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
Cos'è YouTube Timestamp Bookmarker - Gravitate Webs?
YouTube Timestamp Bookmarker - Gravitate Webs è un'estensione di Chrome sviluppata da gravitatewebs, e la sua funzione principale è "Saving timestamps in YouTube videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Timestamp Bookmarker - Gravitate Webs
Scarica i file di estensione YouTube Timestamp Bookmarker - Gravitate Webs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.
Informazioni di Base sull'Estensione
Nome | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
Descrizione | Saving timestamps in YouTube videos |
Dimensione del File | 138 KB |
Conteggio Installazioni | 31 |
Versione Corrente | 0.1.0.0 |
Ultimo Aggiornamento | 2022-06-08 |
Data di Pubblicazione | 2022-06-07 |
Sviluppatore | gravitatewebs |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://gravitatewebs.com/ |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Bookmarker - Gravitate Webs", "version": "0.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 Timestamp Bookmarker - Gravitate Webs", "default_popup": "popup.html" }, "manifest_version": 3 } |