jsFiddle Player

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

jsFiddle Playerとは何ですか?

jsFiddle Playerはbustercによって開発されたChromeの拡張機能で、その主な機能は「Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

jsFiddle Player拡張機能のCRXファイルをダウンロード

jsFiddle Player拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 jsFiddle Player jsFiddle Player
ID acmoiaipblimhfnjejofmmfjkgpedcpd
公式URL https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd
説明 Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
ファイルサイズ 28.39 KB
インストール数 673
現在のバージョン 1.0
最終更新日 2012-05-15
公開日 2012-05-15
評価 3.50/5 合計 8 レビュー
開発者 busterc
Eメール [email protected]
支払い方法 free
対応言語 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\/*"
    ]
}