Lyrics Opener

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

¿Qué es Lyrics Opener?

Lyrics Opener es una extensión de Chrome desarrollada por naofu.me, y su función principal es "Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Lyrics Opener

Descarga archivos de extensión Lyrics Opener en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Lyrics Opener Lyrics Opener
ID llcbiodcagapgcboejbanchnkphppnfg
URL Oficial https://chromewebstore.google.com/detail/lyrics-opener/llcbiodcagapgcboejbanchnkphppnfg
Descripción Play Music(旧Google Music)上で再生中の曲の歌詞をワンクリックで別タブに表示します。 現在日本語の歌詞に対応しています。 機能1: Google Play…
Tamaño del Archivo 39.94 KB
Cantidad de Instalaciones 72
Versión Actual 1.3
Última Actualización 2016-08-12
Fecha de Publicación 2016-08-11
Calificación 4.00/5 Total de 3 Calificaciones
Desarrollador naofu.me
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
}