TubeMark
Bookmark and take notes on YouTube timeline.
Cos'è TubeMark?
TubeMark è un'estensione di Chrome sviluppata da chaosifier, e la sua funzione principale è "Bookmark and take notes on YouTube timeline.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TubeMark
Scarica i file di estensione TubeMark 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
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
Informazioni di Base sull'Estensione
Nome | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
URL Ufficiale | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
Descrizione | Bookmark and take notes on YouTube timeline. |
Dimensione del File | 91.5 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2020-11-17 |
Data di Pubblicazione | 2020-11-13 |
Valutazione | 3.25/5 Totale 4 Valutazioni |
Sviluppatore | chaosifier |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/chaosifier/TubeMark |
URL della Pagina di Aiuto | https://github.com/chaosifier/TubeMark/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TubeMark", "description": "Bookmark and take notes on YouTube timeline.", "version": "1.0.1", "author": "Sagar Dahal", "browser_action": { "default_icon": "ic_launcher.png", "default_title": "TubeMark" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "256": "ic_launcher.png" }, "web_accessible_resources": [ "mainPage.html" ] } |