YouTube Repeat
Repeats a YouTube video
Cos'è YouTube Repeat?
YouTube Repeat è un'estensione di Chrome sviluppata da Jimmy Fu, e la sua funzione principale è "Repeats a YouTube video".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Repeat
Scarica i file di estensione YouTube Repeat 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
Minimalistic extension for replaying YouTube videos.
Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable Informazioni di Base sull'Estensione
| Nome | |
| ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
| URL Ufficiale | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
| Descrizione | Repeats a YouTube video |
| Dimensione del File | 24.45 KB |
| Conteggio Installazioni | 2,323 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2015-10-09 |
| Data di Pubblicazione | 2015-10-08 |
| Valutazione | 4.37/5 Totale 35 Valutazioni |
| Sviluppatore | Jimmy Fu |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Repeat",
"short_name": "Repeat",
"description": "Repeats a YouTube video",
"version": "1.1",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"page_action": {
"default_icon": "images\/icon.png",
"default_title": "Repeat"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content_script.js"
],
"matches": [
"*:\/\/youtube.com\/*",
"*:\/\/*.youtube.com\/*"
],
"run_at": "document_start"
}
],
"permissions": [
"tabs"
]
} | |