Guitar Tabs for YouTube
This extension will look into the current YouTube video description section and show available guitar tabs.
Wat is Guitar Tabs for YouTube?
Guitar Tabs for YouTube is een Chrome-extensie ontwikkeld door https://www.music-theory.biz, en de belangrijkste functie is "This extension will look into the current YouTube video description section and show available guitar tabs.".
Extensie Screenshots
Download het CRX-bestand van de extensie Guitar Tabs for YouTube
Download Guitar Tabs for YouTube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The tabs should be written in this format: Am: 122000, in order to be extracted.
Basisinformatie over de Extensie
Naam | Guitar Tabs for YouTube |
ID | hehbipgbdjhpnhbgapjokhanboefalfj |
Officiële URL | https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj |
Beschrijving | This extension will look into the current YouTube video description section and show available guitar tabs. |
Bestandsgrootte | 8.01 KB |
Aantal Installaties | 405 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2017-06-03 |
Publicatiedatum | 2017-06-03 |
Beoordeling | 3.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | https://www.music-theory.biz |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |