#NowPlaying for Google Play Music

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

#NowPlaying for Google Play Music क्या है?

#NowPlaying for Google Play Music mizdra द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It's tools to share music playing on Youtube Music to SNS."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में #NowPlaying for Google Play Music एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम #NowPlaying for Google Play Music #NowPlaying for Google Play Music
ID nhpanomgefidcljmcmkbanhoomaglmlk
आधिकारिक URL https://chromewebstore.google.com/detail/nowplaying-for-google-pla/nhpanomgefidcljmcmkbanhoomaglmlk
विवरण It's tools to share music playing on Youtube Music to SNS.
फ़ाइल का आकार 863 KB
स्थापना संख्या 311
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2021-06-15
प्रकाशन तिथि 2019-12-15
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर mizdra
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://now-playing-for-gpm.mizdra.net
सहायता पृष्ठ URL https://github.com/mizdra/now-playing-for-google-play-music
समर्थित भाषाएँ 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
}