Netflix Subtitle Delay
Mini tool to delay the Netflix subtitles
Cos'è Netflix Subtitle Delay?
Netflix Subtitle Delay è un'estensione di Chrome sviluppata da Behnam Azimi, e la sua funzione principale è "Mini tool to delay the Netflix subtitles".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netflix Subtitle Delay
Scarica i file di estensione Netflix Subtitle Delay 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
Mini tool to delay subtitles on the Netflix official website. As you may know, Netflix doesn't have this functionality by default, and being able to delay subtitle streaming can be of great help when you're trying to learn a new language. By default, you can change the delay time by "A" and "D" keyboard shortcuts. It's also possible to adjust your shortcuts. This extension is only allowed to execute on the Netflix official website and I hope they add the subtitle delay options soon and make this extension useless :) v1.11
Informazioni di Base sull'Estensione
Nome | |
ID | jlfdecbacdnabiopdhgbjmgggabhjoce |
URL Ufficiale | https://chromewebstore.google.com/detail/netflix-subtitle-delay/jlfdecbacdnabiopdhgbjmgggabhjoce |
Descrizione | Mini tool to delay the Netflix subtitles |
Dimensione del File | 32.97 KB |
Conteggio Installazioni | 534 |
Versione Corrente | 1.11 |
Ultimo Aggiornamento | 2022-09-15 |
Data di Pubblicazione | 2022-02-15 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | Behnam Azimi |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/behnamazimi/netflix-subtitle-delay |
URL della Pagina di Aiuto | https://github.com/behnamazimi/netflix-subtitle-delay/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Subtitle Delay", "version": "1.11", "description": "Mini tool to delay the Netflix subtitles", "permissions": [ "tabs", "activeTab", "storage" ], "host_permissions": [ "https:\/\/netflix.com\/*", "https:\/\/www.netflix.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/netflix.com\/*", "https:\/\/www.netflix.com\/*" ], "js": [ "shared\/constant.js", "shared\/utils.js", "content\/index.js" ], "css": [ "shared\/styles.css" ] } ], "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "manifest_version": 3 } |