Guitar Tabs for YouTube
This extension will look into the current YouTube video description section and show available guitar tabs.
Cos'è Guitar Tabs for YouTube?
Guitar Tabs for YouTube è un'estensione di Chrome sviluppata da https://www.music-theory.biz, e la sua funzione principale è "This extension will look into the current YouTube video description section and show available guitar tabs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Guitar Tabs for YouTube
Scarica i file di estensione Guitar Tabs for YouTube 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
The tabs should be written in this format: Am: 122000, in order to be extracted. Informazioni di Base sull'Estensione
| Nome | |
| ID | hehbipgbdjhpnhbgapjokhanboefalfj |
| URL Ufficiale | https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj |
| Descrizione | This extension will look into the current YouTube video description section and show available guitar tabs. |
| Dimensione del File | 8.01 KB |
| Conteggio Installazioni | 405 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2017-06-03 |
| Data di Pubblicazione | 2017-06-03 |
| Valutazione | 3.00/5 Totale 4 Valutazioni |
| Sviluppatore | https://www.music-theory.biz |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Guitar Tabs for YouTube",
"description": "This extension will look into the current YouTube video description section and show available guitar tabs.",
"version": "1.0.0",
"browser_action": {
"default_icon": "icon_128.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
]
} | |