Guitar Tabs for YouTube
This extension will look into the current YouTube video description section and show available guitar tabs.
What is Guitar Tabs for YouTube?
Guitar Tabs for YouTube is a Chrome extension developed by https://www.music-theory.biz, and its main feature is "This extension will look into the current YouTube video description section and show available guitar tabs.".
Extension Screenshots
Download Guitar Tabs for YouTube Extension CRX File
Download Guitar Tabs for YouTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The tabs should be written in this format: Am: 122000, in order to be extracted.
Extension Basic Information
Name | Guitar Tabs for YouTube |
ID | hehbipgbdjhpnhbgapjokhanboefalfj |
Official URL | https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj |
Description | This extension will look into the current YouTube video description section and show available guitar tabs. |
File Size | 8.01 KB |
Installation Count | 405 |
Current Version | 1.0.0 |
Last Updated | 2017-06-03 |
Publish Date | 2017-06-03 |
Rating | 3.00/5 Total 4 Ratings |
Developer | https://www.music-theory.biz |
Payment Type | free |
Supported Languages | 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" ] } ] } |