jsFiddle Player

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

O que é jsFiddle Player?

jsFiddle Player é uma extensão do Chrome desenvolvida por busterc, e sua principal característica é "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão jsFiddle Player

Baixe arquivos de extensão jsFiddle Player no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)!                    

Informações Básicas da Extensão

Nome jsFiddle Player jsFiddle Player
ID acmoiaipblimhfnjejofmmfjkgpedcpd
URL Oficial https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd
Descrição Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
Tamanho do Arquivo 28.39 KB
Contagem de Instalações 673
Versão Atual 1.0
Última Atualização 2012-05-15
Data de Publicação 2012-05-15
Classificação 3.50/5 Total de 8 Avaliações
Desenvolvedor busterc
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
    ]
}