Lyrics Opener

Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play…

Lyrics Opener란 무엇입니까?

Lyrics Opener은(는) naofu.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play…"입니다.

확장 프로그램 스크린샷

screenshot

Lyrics Opener 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Lyrics Opener Lyrics Opener
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
이메일 [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"
}