jsFiddle Player

Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.

Co je jsFiddle Player?

jsFiddle Player je rozšíření Chrome vyvinuté busterc, a jeho hlavní funkcí je „Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření jsFiddle Player

Stáhněte si soubory rozšíření jsFiddle Player ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        jsFiddle is awesome, but sometimes you want to combine all your HTML, CSS & JS into a single HTML file (perhaps to save it to your local disk). jsFiddle Player does that, it simply adds a "play" button to the Omnibox so that you can pop open a new tab/window with the output combined into a single web page. That's it, simple & useful (at least for me)!                    

Základní Informace o Rozšíření

Název jsFiddle Player jsFiddle Player
ID acmoiaipblimhfnjejofmmfjkgpedcpd
Oficiální URL https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd
Popis Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
Velikost souboru 28.39 KB
Počet instalací 673
Aktuální Verze 1.0
Poslední Aktualizace 2012-05-15
Datum Vydání 2012-05-15
Hodnocení 3.50/5 Celkem 8 Hodnocení
Vývojář busterc
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "jsFiddle Player",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "img\/icon-016.png",
        "default_title": "Play this fiddle"
    },
    "icons": {
        "16": "img\/icon-016.png",
        "48": "img\/icon-048.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/jsfiddle.net\/*",
        "https:\/\/jsfiddle.net\/*"
    ]
}