Youtube Bookmarker
Saving timestamps in youtube videos
Cos'è Youtube Bookmarker?
Youtube Bookmarker è un'estensione di Chrome sviluppata da Adham Niazy, e la sua funzione principale è "Saving timestamps in youtube videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Bookmarker
Scarica i file di estensione Youtube Bookmarker 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
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.
Informazioni di Base sull'Estensione
Nome | Youtube Bookmarker |
ID | ajfngclcoacjmcadbcchfmhiiafegabp |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-bookmarker/ajfngclcoacjmcadbcchfmhiiafegabp |
Descrizione | Saving timestamps in youtube videos |
Dimensione del File | 260 KB |
Conteggio Installazioni | 127 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2022-07-06 |
Data di Pubblicazione | 2022-07-05 |
Valutazione | 4.60/5 Totale 10 Valutazioni |
Sviluppatore | Adham Niazy |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |