jsFiddlr

zip up and download your fiddle from jsFiddle

Vad är jsFiddlr?

jsFiddlr är en Chrome-tillägg utvecklad av David Justice, och dess huvudfunktion är "zip up and download your fiddle from jsFiddle".

Ladda ner jsFiddlr-förlängningens CRX-fil

Ladda ner jsFiddlr-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn jsFiddlr jsFiddlr
ID fcmbijlhdapkibamnedmjohkdhhijlgb
Officiell webbadress https://chrome.google.com/webstore/detail/jsfiddlr/fcmbijlhdapkibamnedmjohkdhhijlgb
Beskrivning zip up and download your fiddle from jsFiddle
Filstorlek 21.46 KB
Antal Installationer 15
Aktuell Version 0.0.1
Senast Uppdaterad 2013-11-18
Publiceringsdatum 2013-11-18
Utvecklare David Justice
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/meandavejustice/jsFidlr
URL till Sekretesspolicy Sidan https://discuss.ipfs.tech/privacy
Stödda Språk 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"
            ]
        }
    ]
}