Custom YouTube Start Stop
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
Cos'è Custom YouTube Start Stop?
Custom YouTube Start Stop è un'estensione di Chrome sviluppata da Jonathan Li, e la sua funzione principale è "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Custom YouTube Start Stop
Scarica i file di estensione Custom YouTube Start Stop 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 is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.
Informazioni di Base sull'Estensione
Nome | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
URL Ufficiale | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
Descrizione | This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is… |
Dimensione del File | 31.64 KB |
Conteggio Installazioni | 39 |
Versione Corrente | 0.1.2 |
Ultimo Aggiornamento | 2021-05-11 |
Data di Pubblicazione | 2021-05-11 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Jonathan Li |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom YouTube Start Stop", "version": "0.1.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_title": "Custom YouTube Start Stop", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |