jsFiddle Player

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

What is jsFiddle Player?

jsFiddle Player is a Chrome extension developed by busterc, and its main feature is "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.".

Extension Screenshots

screenshot
screenshot
screenshot

Download jsFiddle Player Extension CRX File

Download jsFiddle Player extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name jsFiddle Player jsFiddle Player
ID acmoiaipblimhfnjejofmmfjkgpedcpd
Official URL https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd
Description Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
File Size 28.39 KB
Installation Count 673
Current Version 1.0
Last Updated 2012-05-15
Publish Date 2012-05-15
Rating 3.50/5 Total 8 Ratings
Developer busterc
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}