#NowPlaying for Google Play Music

It's tools to share music playing on Youtube Music to SNS.

Co je #NowPlaying for Google Play Music?

#NowPlaying for Google Play Music je rozšíření Chrome vyvinuté mizdra, a jeho hlavní funkcí je „It's tools to share music playing on Youtube Music to SNS.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření #NowPlaying for Google Play Music

Stáhněte si soubory rozšíření #NowPlaying for Google Play Music ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        ## Features
- Share your music to Twitter
- Support Youtube Music
- Customizable template with variable
    - ${title}: The title of music
    - ${artist}: The artist name of music
    - ${album}: The album name of music
- Support mobile platform

## Change Log
- see https://github.com/mizdra/now-playing-for-google-play-music/blob/master/CHANGELOG.md                    

Základní Informace o Rozšíření

Název #NowPlaying for Google Play Music #NowPlaying for Google Play Music
ID nhpanomgefidcljmcmkbanhoomaglmlk
Oficiální URL https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk
Popis It's tools to share music playing on Youtube Music to SNS.
Velikost souboru 863 KB
Počet instalací 311
Aktuální Verze 1.3.0
Poslední Aktualizace 2021-06-15
Datum Vydání 2019-12-15
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář mizdra
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://now-playing-for-gpm.mizdra.net
URL Stránky Nápovědy https://github.com/mizdra/now-playing-for-google-play-music
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "#NowPlaying for Google Play Music",
    "version": "1.3.0",
    "description": "It's tools to share music playing on Youtube Music to SNS.",
    "short_name": "#NowPlaying",
    "author": "mizdra",
    "homepage_url": "https:\/\/now-playing-for-gpm.mizdra.net",
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/pages\/ytm\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": ".\/pages\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "48": "img\/logo-48.png",
        "96": "img\/logo-96.png",
        "128": "img\/logo-128.png"
    },
    "manifest_version": 2
}