playpause
Pause and play again your music
Hvad er playpause?
playpause er en Chrome-udvidelse udviklet af Deliaz, og dens hovedfunktion er "Pause and play again your music".
Udvidelsesskærmbilleder
Download playpause-udvidelses-CRX-fil
Download playpause-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nphcoecmaigjlaadabjihhoaiaopcadk |
| Officiel URL | https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk |
| Beskrivelse | Pause and play again your music |
| Filstørrelse | 10.48 KB |
| Antal Installationer | 72 |
| Nuværende Version | 2.0.1 |
| Senest Opdateret | 2018-09-11 |
| Udgivelsesdato | 2018-09-10 |
| Bedømmelse | 5.00/5 Samlet 5 Bedømmelser |
| Udvikler | Deliaz |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/deliaz/playpause |
| URL til Fortrolighedspolitik Side | https://clipboardextension.com/policy.html |
| Understøttede Sprog | 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"
]
} | |