YouTube Progress Bar
Adds a progress bar below YouTube videos
Cos'è YouTube Progress Bar?
YouTube Progress Bar è un'estensione di Chrome sviluppata da bggrund, e la sua funzione principale è "Adds a progress bar below YouTube videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Progress Bar
Scarica i file di estensione YouTube Progress Bar 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
Adds a permanent progress bar and timestamp beneath YouTube videos and movies
Source: https://github.com/bggrund/YouTubeProgressBar Informazioni di Base sull'Estensione
| Nome | |
| ID | gcbpebcnhbpcommcmoiaepfaalanakhh |
| URL Ufficiale | https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh |
| Descrizione | Adds a progress bar below YouTube videos |
| Dimensione del File | 5.94 KB |
| Conteggio Installazioni | 35 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-07-19 |
| Data di Pubblicazione | 2021-07-18 |
| Valutazione | 4.25/5 Totale 4 Valutazioni |
| Sviluppatore | bggrund |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/bggrund/YouTubeProgressBar |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Progress Bar",
"version": "1.0",
"description": "Adds a progress bar below YouTube videos",
"icons": {
"128": "128.png"
},
"browser_action": {
"default_icon": "128.png"
},
"permissions": [
"*:\/\/*.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"time.js"
],
"css": [
"time.css"
],
"run_at": "document_idle"
}
]
} | |