YouTube Repeat Button
YouTube Repeat Button.
Cos'è YouTube Repeat Button?
YouTube Repeat Button è un'estensione di Chrome sviluppata da Vladislav Tupikin, e la sua funzione principale è "YouTube Repeat Button.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Repeat Button
Scarica i file di estensione YouTube Repeat Button 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
Google Chrome extension that embeds a video repeat button directly into the YouTube player
Informazioni di Base sull'Estensione
Nome | YouTube Repeat Button |
ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
Descrizione | YouTube Repeat Button. |
Dimensione del File | 15.33 KB |
Conteggio Installazioni | 394 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-01-05 |
Data di Pubblicazione | 2019-12-20 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | Vladislav Tupikin |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/MrRefactoring/youtube-repeat |
Lingue Supportate | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.0.0", "default_locale": "en", "icons": { "16": "src\/images\/icons\/icon16.png", "48": "src\/images\/icons\/icon48.png", "128": "src\/images\/icons\/icon128.png" }, "content_scripts": [ { "run_at": "document_end", "css": [ "src\/styles.css" ], "js": [ "src\/helpers\/onElementHeightChange.js", "src\/helpers\/onRepeatClick.js", "src\/helpers\/removeTitle.js", "src\/helpers\/resetTitle.js", "src\/helpers\/createButton.js", "src\/helpers\/patcher.js", "src\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "tabs" ] } |