jsFiddlr

zip up and download your fiddle from jsFiddle

jsFiddlrとは何ですか?

jsFiddlrはDavid Justiceによって開発されたChromeの拡張機能で、その主な機能は「zip up and download your fiddle from jsFiddle」です。

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

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

拡張機能の使用方法

                        An extension to zip and and download your jsFiddles in the browser                    

拡張機能の基本情報

名前 jsFiddlr jsFiddlr
ID fcmbijlhdapkibamnedmjohkdhhijlgb
公式URL https://chrome.google.com/webstore/detail/jsfiddlr/fcmbijlhdapkibamnedmjohkdhhijlgb
説明 zip up and download your fiddle from jsFiddle
ファイルサイズ 21.46 KB
インストール数 15
現在のバージョン 0.0.1
最終更新日 2013-11-18
公開日 2013-11-18
開発者 David Justice
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/meandavejustice/jsFidlr
プライバシーポリシーページのURL https://discuss.ipfs.tech/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "jsFiddlr",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "zip up and download your fiddle from jsFiddle",
    "homepage_url": "http:\/\/github.com\/meandavejustice",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "jsFiddlr"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/jsfiddle.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}