Guitar Tabs for YouTube
This extension will look into the current YouTube video description section and show available guitar tabs.
Apa itu Guitar Tabs for YouTube?
Guitar Tabs for YouTube adalah ekstensi Chrome yang dikembangkan oleh https://www.music-theory.biz, dan fitur utamanya adalah "This extension will look into the current YouTube video description section and show available guitar tabs.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Guitar Tabs for YouTube
Unduh file ekstensi Guitar Tabs for YouTube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
The tabs should be written in this format: Am: 122000, in order to be extracted.
Informasi Dasar Ekstensi
Nama | Guitar Tabs for YouTube |
ID | hehbipgbdjhpnhbgapjokhanboefalfj |
URL Resmi | https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj |
Deskripsi | This extension will look into the current YouTube video description section and show available guitar tabs. |
Ukuran File | 8.01 KB |
Jumlah Instalasi | 405 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2017-06-03 |
Tanggal Publikasi | 2017-06-03 |
Penilaian | 3.00/5 Total 4 Penilaian |
Pengembang | https://www.music-theory.biz |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |