jsFiddlr

zip up and download your fiddle from jsFiddle

Wat is jsFiddlr?

jsFiddlr is een Chrome-extensie ontwikkeld door David Justice, en de belangrijkste functie is "zip up and download your fiddle from jsFiddle".

Download het CRX-bestand van de extensie jsFiddlr

Download jsFiddlr-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam jsFiddlr jsFiddlr
ID fcmbijlhdapkibamnedmjohkdhhijlgb
Officiële URL https://chrome.google.com/webstore/detail/jsfiddlr/fcmbijlhdapkibamnedmjohkdhhijlgb
Beschrijving zip up and download your fiddle from jsFiddle
Bestandsgrootte 21.46 KB
Aantal Installaties 15
Huidige Versie 0.0.1
Laatst Bijgewerkt 2013-11-18
Publicatiedatum 2013-11-18
Ontwikkelaar David Justice
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/meandavejustice/jsFidlr
URL van de Privacybeleid Pagina https://discuss.ipfs.tech/privacy
Ondersteunde Talen 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"
            ]
        }
    ]
}