GrooveOrca

GrooveOrca allows you to add features to Deezer, Spotify, Google Play Music or Microsoft Groove. * Scrobble your plays from your…

Wat is GrooveOrca?

GrooveOrca is een Chrome-extensie ontwikkeld door Guillaume Louvigny, en de belangrijkste functie is "GrooveOrca allows you to add features to Deezer, Spotify, Google Play Music or Microsoft Groove. * Scrobble your plays from your…".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie GrooveOrca

Download GrooveOrca-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

                        GrooveOrca allows you to add features to Deezer, Spotify, Google Play Music or Microsoft Groove.

* Scrobble your plays from your player to Last.fm;
* Display the Wikipedia article of the artist you are listening;
* Display the lyrics of the song;
* Display notifications on your desktop;
* Control playback from any page;


* Control via keyboard media keys (Play/Pause, Previous, Next):


Ideas for improvement? A problem with the extension? Send an email to [email protected]

Ha, I forgot, I'm open source: https://github.com/Tuxkowo/grooveorca                    

Basisinformatie over de Extensie

Naam GrooveOrca GrooveOrca
ID gjklihkoalifehdideddeijabppmnddo
Officiële URL https://chrome.google.com/webstore/detail/grooveorca/gjklihkoalifehdideddeijabppmnddo
Beschrijving GrooveOrca allows you to add features to Deezer, Spotify, Google Play Music or Microsoft Groove. * Scrobble your plays from your…
Bestandsgrootte 896 KB
Aantal Installaties 234
Huidige Versie 2.0.1.0
Laatst Bijgewerkt 2017-06-25
Publicatiedatum 2017-06-25
Beoordeling 4.25/5 Totaal 140 Beoordelingen
Ontwikkelaar Guillaume Louvigny
Betalingswijze free
Ondersteunde Talen en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "data\/icons\/icon_32x32.png",
        "default_popup": "data\/popup.html"
    },
    "icons": {
        "16": "data\/icons\/icon_16x16.png",
        "32": "data\/icons\/icon_32x32.png",
        "48": "data\/icons\/icon_48x48.png",
        "128": "data\/icons\/icon_128x128.png"
    },
    "manifest_version": 2,
    "name": "GrooveOrca",
    "version": "2.0.1.0",
    "author": "Guillaume Louvigny",
    "permissions": [
        "*:\/\/*.deezer.com\/",
        "*:\/\/*.spotify.com\/",
        "*:\/\/*.wikipedia.org\/",
        "*:\/\/*.cloudfront.net\/",
        "*:\/\/*.amazonaws.com\/",
        "*:\/\/*.viewlyrics.com\/",
        "*:\/\/*.wikia.com\/",
        "*:\/\/*.metrolyrics.com\/",
        "*:\/\/*.ggpht.com\/",
        "*:\/\/*.audioscrobbler.com\/",
        "*:\/\/*.xboxlive.com\/",
        "storage",
        "notifications",
        "idle"
    ],
    "background": {
        "scripts": [
            "lib\/ext\/caoutchouc\/ext\/requirejs\/require.js",
            "lib\/main-built.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "data\/watchers\/player\/amazon.js",
        "data\/watchers\/player\/deezer.js",
        "data\/watchers\/player\/spotify.js",
        "data\/watchers\/player\/googleplay.js",
        "data\/watchers\/player\/xboxmusic.js",
        "data\/watchers\/bridge-watcher.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deezer.com\/*"
            ],
            "js": [
                "data\/watchers\/messaging-chrome.js",
                "data\/watchers\/messaging-firefox.js",
                "data\/watchers\/messaging-safari.js",
                "data\/watchers\/music-bridge.js",
                "data\/watchers\/bridge-watcher.js",
                "data\/watchers\/player\/deezer.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.spotify.com\/*"
            ],
            "js": [
                "data\/watchers\/messaging-chrome.js",
                "data\/watchers\/messaging-firefox.js",
                "data\/watchers\/messaging-safari.js",
                "data\/watchers\/music-bridge.js",
                "data\/watchers\/bridge-watcher.js",
                "data\/watchers\/player\/spotify.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.amazon.fr\/gp\/dmusic\/cloudplayer\/*"
            ],
            "js": [
                "data\/watchers\/messaging-chrome.js",
                "data\/watchers\/messaging-firefox.js",
                "data\/watchers\/messaging-safari.js",
                "data\/watchers\/music-bridge.js",
                "data\/watchers\/bridge-watcher.js",
                "data\/watchers\/player\/amazon.js"
            ]
        },
        {
            "matches": [
                "*:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "data\/watchers\/messaging-chrome.js",
                "data\/watchers\/messaging-firefox.js",
                "data\/watchers\/messaging-safari.js",
                "data\/watchers\/music-bridge.js",
                "data\/watchers\/bridge-watcher.js",
                "data\/watchers\/player\/googleplay.js"
            ]
        },
        {
            "matches": [
                "*:\/\/music.microsoft.com\/*"
            ],
            "js": [
                "data\/watchers\/messaging-chrome.js",
                "data\/watchers\/messaging-firefox.js",
                "data\/watchers\/messaging-safari.js",
                "data\/watchers\/music-bridge.js",
                "data\/watchers\/bridge-watcher.js",
                "data\/watchers\/player\/xboxmusic.js"
            ]
        }
    ],
    "commands": {
        "previous": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "global": true,
            "description": "Skip to the previous listened track"
        },
        "playpause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "global": true,
            "description": "Toggle playback"
        },
        "next": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "global": true,
            "description": "Skip to the next track in queue"
        }
    },
    "default_locale": "en"
}