HoverPlay

Easier interaction with audio links on the web.

Hvad er HoverPlay?

HoverPlay er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Easier interaction with audio links on the web.".

Udvidelsesskærmbilleder

screenshot

Download HoverPlay-udvidelses-CRX-fil

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

                        Just hover over an audio link let HoverPlay do the rest! An audio player will appear in the bottom right of the page.

When the audio player is on the screen, use spacebar to play and pause the audio and esc to remove the player.                    

Grundlæggende oplysninger om udvidelsen

Navn HoverPlay HoverPlay
ID hkbbcjmckhhnpniafekogpfonhiomnal
Officiel URL https://chromewebstore.google.com/detail/hoverplay/hkbbcjmckhhnpniafekogpfonhiomnal
Beskrivelse Easier interaction with audio links on the web.
Filstørrelse 53.72 KB
Antal Installationer 472
Nuværende Version 1.0.4
Senest Opdateret 2013-02-25
Udgivelsesdato 2013-02-24
Bedømmelse 4.40/5 Samlet 10 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HoverPlay",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "Easier interaction with audio links on the web.",
    "background": {
        "scripts": [
            "jquery.js",
            "bg.js"
        ]
    },
    "options_page": "options\/options.html",
    "icons": {
        "48": "icons\/hoverplay48.png",
        "128": "icons\/hoverplay128.png"
    },
    "page_action": {
        "default_icon": "icons\/hoverplay38.png",
        "default_title": "Disable HoverPlay",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "jquery-ui.min.js",
                "contentscript.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}