playpause

Pause and play again your music

Cos'è playpause?

playpause è un'estensione di Chrome sviluppata da Deliaz, e la sua funzione principale è "Pause and play again your music".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione playpause

Scarica i file di estensione playpause in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
URL Ufficiale https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
Descrizione Pause and play again your music
Dimensione del File 10.48 KB
Conteggio Installazioni 72
Versione Corrente 2.0.1
Ultimo Aggiornamento 2018-09-11
Data di Pubblicazione 2018-09-10
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Deliaz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/deliaz/playpause
URL della Pagina della Politica sulla Privacy https://clipboardextension.com/policy.html
Lingue Supportate 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"
    ]
}