HoverPlay

Easier interaction with audio links on the web.

Wat is HoverPlay?

HoverPlay is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Easier interaction with audio links on the web.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie HoverPlay

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

                        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.                    

Basisinformatie over de Extensie

Naam HoverPlay HoverPlay
ID hkbbcjmckhhnpniafekogpfonhiomnal
Officiële URL https://chromewebstore.google.com/detail/hoverplay/hkbbcjmckhhnpniafekogpfonhiomnal
Beschrijving Easier interaction with audio links on the web.
Bestandsgrootte 53.72 KB
Aantal Installaties 472
Huidige Versie 1.0.4
Laatst Bijgewerkt 2013-02-25
Publicatiedatum 2013-02-24
Beoordeling 4.40/5 Totaal 10 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    ]
}