playpause

Pause and play again your music

Что такое playpause?

playpause - это расширение Chrome, разработанное Deliaz, и его основная функция - "Pause and play again your music".

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

screenshot

Скачать файл CRX расширения playpause

Скачайте файлы расширений playpause в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        PlayPause is a small button which allows to your music and video on pause and then play again. 
Currently supports: 
 – YouTube.com
 – SoundCloud.com
 – PromoDJ.com

It can be more effective if you will set keyboard shortcut on the button in your Chrome Extension page.                    

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

Название playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
Официальный URL https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
Описание Pause and play again your music
Размер файла 10.48 KB
Количество установок 72
Текущая Версия 2.0.1
Последнее Обновление 2018-09-11
Дата публикации 2018-09-10
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Deliaz
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/deliaz/playpause
URL страницы политики конфиденциальности https://clipboardextension.com/policy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "playpause",
    "version": "2.0.1",
    "description": "Pause and play again your music",
    "permissions": [
        "tabs",
        "*:\/\/promodj.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "imgs\/38.png"
    },
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/promodj.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}