Grooveplayer

A simple player for Grooveshark that docks to the bottom of your screen. Control Grooveshark no matter what you're doing.

什麼是Grooveplayer?

Grooveplayer是由Luke Tsekouras開發的Chrome擴展程式,該擴展的主要功能是“A simple player for Grooveshark that docks to the bottom of your screen. Control Grooveshark no matter what you're doing.”。

擴展截圖

screenshot
screenshot

下載Grooveplayer擴展crx文件

下載Grooveplayer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ******** Features ********

 • Pause, play and skip songs
 • Appears on top of all your applications when you open Grooveshark - it's accessible even outside of Chrome
 • Easily resize, move, hide and unhide the player window
 • Minimalist design
 • View song and artist information along with a preview of the album art
 • Completely configurable
 • Supported in Windows, Mac, Linux, and Chrome OS

******** IMPORTANT ********

** Refresh your Grooveshark page if it's currently open **

Grooveplayer makes use of the experimental "Panels" feature of Chrome, which lets it exist outside of the browser.  In most installations of Chrome, you'll have to enable panels manually.  The extension should guide you through the process if you have panels disabled. 

Naturally, because Panels are experimental, you should expect quirks here and there.  Please understand that I have no control of this, and it will be up to Google to address such issues in time. 

******** Note ********

If you ever have any issues with Grooveplayer, please submit a bug report through the Chrome Store.  While you're waiting for a fix to come out, refreshing the Grooveshark page should temporarily fix most problems you're having.  

Also feel free to request new features and ask me any questions about Grooveplayer that you may have.  This can all be done through the Chrome Store.                    

擴展基本資訊

名稱 Grooveplayer Grooveplayer
ID jnimbhddlpolciagcmencndhlpepbdcm
官方網址 https://chromewebstore.google.com/detail/grooveplayer/jnimbhddlpolciagcmencndhlpepbdcm
簡介 A simple player for Grooveshark that docks to the bottom of your screen. Control Grooveshark no matter what you're doing.
檔案大小 185 KB
安裝次數 183
目前版本 1.0.8
更新時間 2014-10-16
上架時間 2014-10-15
評分 4.61/5 共 23 次評分
開發者 Luke Tsekouras
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grooveplayer",
    "version": "1.0.8",
    "manifest_version": 2,
    "description": "A simple player for Grooveshark that docks to the bottom of your screen.  Control Grooveshark no matter what you're doing.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "Grooveplayer"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.grooveshark.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*.grooveshark.com\/*",
        "http:\/\/images.gs-cdn.net\/*"
    ],
    "web_accessible_resources": [
        "icons\/icon48.png"
    ]
}