Guitar Tabs for YouTube
This extension will look into the current YouTube video description section and show available guitar tabs.
Guitar Tabs for YouTubeとは何ですか?
Guitar Tabs for YouTubeはhttps://www.music-theory.bizによって開発されたChromeの拡張機能で、その主な機能は「This extension will look into the current YouTube video description section and show available guitar tabs.」です。
拡張機能のスクリーンショット
Guitar Tabs for YouTube拡張機能のCRXファイルをダウンロード
Guitar Tabs for YouTube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The tabs should be written in this format: Am: 122000, in order to be extracted. 拡張機能の基本情報
| 名前 | |
| ID | hehbipgbdjhpnhbgapjokhanboefalfj |
| 公式URL | https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj |
| 説明 | This extension will look into the current YouTube video description section and show available guitar tabs. |
| ファイルサイズ | 8.01 KB |
| インストール数 | 405 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2017-06-03 |
| 公開日 | 2017-06-03 |
| 評価 | 3.00/5 合計 4 レビュー |
| 開発者 | https://www.music-theory.biz |
| 支払い方法 | free |
| 対応言語 | 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"
]
}
]
} | |