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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}