playpause
Pause and play again your music
Was ist playpause?
playpause ist eine Chrome-Erweiterung, die von Deliaz entwickelt wurde, und ihr Hauptmerkmal ist "Pause and play again your music".
Erweiterungsscreenshots
playpause-Erweiterungs-CRX-Datei herunterladen
Laden Sie playpause-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nphcoecmaigjlaadabjihhoaiaopcadk |
| Offizielle URL | https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk |
| Beschreibung | Pause and play again your music |
| Dateigröße | 10.48 KB |
| Installationsanzahl | 72 |
| Aktuelle Version | 2.0.1 |
| Letztes Update | 2018-09-11 |
| Veröffentlichungsdatum | 2018-09-10 |
| Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
| Entwickler | Deliaz |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/deliaz/playpause |
| URL der Datenschutzrichtlinien-Seite | https://clipboardextension.com/policy.html |
| Unterstützte Sprachen | 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"
]
} | |