playpause

Pause and play again your music

Wat is playpause?

playpause is een Chrome-extensie ontwikkeld door Deliaz, en de belangrijkste functie is "Pause and play again your music".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie playpause

Download playpause-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
Officiële URL https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
Beschrijving Pause and play again your music
Bestandsgrootte 10.48 KB
Aantal Installaties 72
Huidige Versie 2.0.1
Laatst Bijgewerkt 2018-09-11
Publicatiedatum 2018-09-10
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Deliaz
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/deliaz/playpause
URL van de Privacybeleid Pagina https://clipboardextension.com/policy.html
Ondersteunde Talen 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"
    ]
}