gMusic

Control Google Play Music with a browser extension.

gMusic क्या है?

gMusic annoyingmouse द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control Google Play Music with a browser extension."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        I love music, I really do. I also love coding and the two together are a little like Strawberries and Cream, Chocolate and Cherries, Cheese and Pineapple, Rhubarb and Custard or Marmite and Cheese (Hey, before you start: some people who hate Marmite like Marmite and Cheese on toast... or Marmite, Peanut Butter, Coleslaw and Cheese on toast (YUM)).

Sometimes other things get in the way though and I'll need to drag myself away from the coding and music fairies to talk to someone, go to a meeting or attend a scrum... in the meantime I've got more tabs open than God and I can't find the Google Music tab for love nor money. What I needed was a simple button that just pauses and plays Google Music - so I made one!

I thought that others might want the same thing - here you go.

UPDATE - fixed an issue with chrome.browserAction.enable()                    

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

नाम gMusic gMusic
ID aiceljnooekdohpfkopeaojkkgebolli
आधिकारिक URL https://chrome.google.com/webstore/detail/gmusic/aiceljnooekdohpfkopeaojkkgebolli
विवरण Control Google Play Music with a browser extension.
फ़ाइल का आकार 2.36 MB
स्थापना संख्या 431
वर्तमान संस्करण 0.0.0.9
अंतिम अपडेट 2014-09-26
प्रकाशन तिथि 2014-09-26
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर annoyingmouse
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/annoyingmouse/gMusic
गोपनीयता नीति पृष्ठ URL https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gMusic",
    "version": "0.0.0.9",
    "manifest_version": 2,
    "description": "Control Google Play Music with a browser extension.",
    "homepage_url": "https:\/\/github.com\/annoyingmouse\/gMusic",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/controller.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "https:\/\/play.google.com\/music\/listen*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/listen*"
            ],
            "js": [
                "js\/injected.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/disabled.png"
    }
}