Guitar Tabs for YouTube
This extension will look into the current YouTube video description section and show available guitar tabs.
Hvad er Guitar Tabs for YouTube?
Guitar Tabs for YouTube er en Chrome-udvidelse udviklet af https://www.music-theory.biz, og dens hovedfunktion er "This extension will look into the current YouTube video description section and show available guitar tabs.".
Udvidelsesskærmbilleder
Download Guitar Tabs for YouTube-udvidelses-CRX-fil
Download Guitar Tabs for YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The tabs should be written in this format: Am: 122000, in order to be extracted.
Grundlæggende oplysninger om udvidelsen
Navn | Guitar Tabs for YouTube |
ID | hehbipgbdjhpnhbgapjokhanboefalfj |
Officiel URL | https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj |
Beskrivelse | This extension will look into the current YouTube video description section and show available guitar tabs. |
Filstørrelse | 8.01 KB |
Antal Installationer | 405 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2017-06-03 |
Udgivelsesdato | 2017-06-03 |
Bedømmelse | 3.00/5 Samlet 4 Bedømmelser |
Udvikler | https://www.music-theory.biz |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |