#NowPlaying for Google Play Music

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

Co to jest #NowPlaying for Google Play Music?

#NowPlaying for Google Play Music to rozszerzenie Chrome opracowane przez mizdra, a jego główną funkcją jest „It's tools to share music playing on Youtube Music to SNS.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia #NowPlaying for Google Play Music

Pobierz pliki rozszerzeń #NowPlaying for Google Play Music w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        ## 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                    

Podstawowe informacje o rozszerzeniu

Nazwa #NowPlaying for Google Play Music #NowPlaying for Google Play Music
ID nhpanomgefidcljmcmkbanhoomaglmlk
Oficjalny URL https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk
Opis It's tools to share music playing on Youtube Music to SNS.
Rozmiar pliku 863 KB
Liczba instalacji 311
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2021-06-15
Data Publikacji 2019-12-15
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper mizdra
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://now-playing-for-gpm.mizdra.net
Adres URL Strony Pomocy https://github.com/mizdra/now-playing-for-google-play-music
Obsługiwane Języki 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
}