Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ when you're listening to music on various streaming websites.
* Bugs Music
* Castbox.fm
* Chrome Built-In Player
* Cirrus Retro
* Comcast/Xfinity
* Coursera
* Crunchyroll
* Deezer
* Digitally Imported (di.fm)
* Gaana.com
* gamemusic.multimedia.cx
* Google Play Music
* Groove Music
* HearThis.at
Expand Down
9 changes: 9 additions & 0 deletions extension/keysocket-cirrusretro.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
keySocket.init(
"cirrusretro",
{
"play-pause": "[title=\"Play/pause\"]",
"prev": "[title=\"Previous track\"]",
"next": "[title=\"Next track\"]"
// stop is omitted
}
);
9 changes: 9 additions & 0 deletions extension/keysocket-gamemusicmultimediacx.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
keySocket.init(
"gamemusicmultimediacx",
{
"play-pause": ".btn-group :nth-child(2)",
"prev": ".btn-group :nth-child(1)",
"next": ".btn-group :nth-child(3)"
// stop is omitted
}
);
8 changes: 8 additions & 0 deletions extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,14 @@
{
"matches": ["*://www.jamendo.com/*"],
"js": ["plugin-api.js", "keysocket-jamendo.js"]
},
{
"matches": ["*://cirrusretro.com/listen/*"],
"js": ["plugin-api.js", "keysocket-cirrusretro.js"]
},
{
"matches": ["*://gamemusic.multimedia.cx/listen/*"],
"js": ["plugin-api.js", "keysocket-gamemusicmultimediacx.js"]
}
]
}