One-Click Controls for Google Music

Control Google Music from your address bar.

Что такое One-Click Controls for Google Music?

One-Click Controls for Google Music - это расширение Chrome, разработанное Procrastinating Student, и его основная функция - "Control Google Music from your address bar.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения One-Click Controls for Google Music

Скачайте файлы расширений One-Click Controls for Google Music в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Simply click the icon in the address bar to play and pause Google Music, no matter what tab you're in!

Upon installation, reload any open Google Music tabs and you'll be all set.

Update:
 - Added options to change default account and auto-shuffle behavior, plus general bug fixes.

Get the rewind button here:
https://chrome.google.com/webstore/detail/jecmhknpaakaljaahcpjpojlomilfcbk

Get the skip button here:
https://chrome.google.com/webstore/detail/bbeefcjnjicgkpjbhdnbegckifhooeeo                    

Основная информация о расширении

Название One-Click Controls for Google Music One-Click Controls for Google Music
ID iplcnndnkaahamcojidocbfdagapbcal
Официальный URL https://chrome.google.com/webstore/detail/one-click-controls-for-go/iplcnndnkaahamcojidocbfdagapbcal
Описание Control Google Music from your address bar.
Размер файла 52.2 KB
Количество установок 42
Текущая Версия 0.0.5
Последнее Обновление 2017-12-06
Дата публикации 2017-12-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Procrastinating Student
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "One-Click Controls for Google Music",
    "description": "Control Google Music from your address bar.",
    "version": "0.0.5",
    "permissions": [
        "http:\/\/play.google.com\/music\/",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/no_song_19.png",
            "38": "images\/no_song_38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.google.com\/music*"
            ],
            "js": [
                "third-party\/jquery-1.12.0.min.js",
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "images\/no_song_19.png",
        "images\/no_song_38.png",
        "images\/play_19.png",
        "images\/play_38.png",
        "images\/pause_19.png",
        "images\/pause_38.png"
    ],
    "manifest_version": 2
}