Lyrics Opener
Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play…
Lyrics Openerとは何ですか?
Lyrics Openerはnaofu.meによって開発されたChromeの拡張機能で、その主な機能は「Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play…」です。
拡張機能のスクリーンショット
Lyrics Opener拡張機能のCRXファイルをダウンロード
Lyrics Opener拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。
現在日本語の歌詞に対応しています。
機能1: Google Play Music上でアイコンをクリックすると別タブに歌詞検索サイトでの検索結果を表示します。検索結果のいずれかを開き歌詞を閲覧してください。
機能2: 上記の方法で歌詞を表示した際に、再度アイコンをクリックすることで歌詞をクリップボードにコピーします。コピー範囲はオプションにて選択できます。
This tiny plugin allows you to show the lyric for a song played on Play Music(aka Google Music) by opening a tab with loading a third-party lyric website. It would save your time! Note: Currently available for Japanese songs. 拡張機能の基本情報
| 名前 | |
| ID | llcbiodcagapgcboejbanchnkphppnfg |
| 公式URL | https://chromewebstore.google.com/detail/lyrics-opener/llcbiodcagapgcboejbanchnkphppnfg |
| 説明 | Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play… |
| ファイルサイズ | 39.94 KB |
| インストール数 | 72 |
| 現在のバージョン | 1.3 |
| 最終更新日 | 2016-08-12 |
| 公開日 | 2016-08-11 |
| 評価 | 4.00/5 合計 3 レビュー |
| 開発者 | naofu.me |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Lyrics Opener",
"version": "1.3",
"icons": {
"128": "icon.png"
},
"background": {
"persistent": false,
"scripts": [
"jquery-3.1.0.min.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/play.google.com\/music\/*",
"http:\/\/www.kasi-time.com\/*",
"http:\/\/kashinavi.com\/*",
"http:\/\/j-lyric.net\/*",
"https:\/\/www.joysound.com\/*"
],
"js": [
"jquery-3.1.0.min.js",
"content.js"
]
}
],
"page_action": {
"default_icon": "icon.png",
"default_title": "Lyrics Opener"
},
"permissions": [
"activeTab",
"tabs",
"notifications",
"storage"
],
"web_accessible_resources": [
"icon.png"
],
"options_page": "options.html"
} | |