jsFiddlr

zip up and download your fiddle from jsFiddle

What is jsFiddlr?

jsFiddlr is a Chrome extension developed by David Justice, and its main feature is "zip up and download your fiddle from jsFiddle".

Download jsFiddlr Extension CRX File

Download jsFiddlr 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

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

Extension Basic Information

Name jsFiddlr jsFiddlr
ID fcmbijlhdapkibamnedmjohkdhhijlgb
Official URL https://chrome.google.com/webstore/detail/jsfiddlr/fcmbijlhdapkibamnedmjohkdhhijlgb
Description zip up and download your fiddle from jsFiddle
File Size 21.46 KB
Installation Count 15
Current Version 0.0.1
Last Updated 2013-11-18
Publish Date 2013-11-18
Developer David Justice
Email [email protected]
Payment Type free
Extension Website https://github.com/meandavejustice/jsFidlr
Privacy Policy Page URL https://discuss.ipfs.tech/privacy
Supported Languages 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"
            ]
        }
    ]
}