playpause

Pause and play again your music

Co to jest playpause?

playpause to rozszerzenie Chrome opracowane przez Deliaz, a jego główną funkcją jest „Pause and play again your music”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia playpause

Pobierz pliki rozszerzeń playpause 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
Oficjalny URL https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
Opis Pause and play again your music
Rozmiar pliku 10.48 KB
Liczba instalacji 72
Aktualna Wersja 2.0.1
Ostatnia Aktualizacja 2018-09-11
Data Publikacji 2018-09-10
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Deliaz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/deliaz/playpause
Adres URL Strony Polityki Prywatności https://clipboardextension.com/policy.html
Obsługiwane Języki 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"
    ]
}