JSKit

Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url

What is JSKit?

JSKit is a Chrome extension developed by Janek Lasocki-Biczysko, and its main feature is "Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url".

Extension Screenshots

screenshot

Download JSKit Extension CRX File

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

                        Menubar action that helps you load JavaScript and CSS libraries into your open pages/tabs.

Libraries are pulled from www.cdnjs.com                    

Extension Basic Information

Name JSKit JSKit
ID aopfdhabfojdkgcmibiegfhpfkcokmdg
Official URL https://chrome.google.com/webstore/detail/jskit/aopfdhabfojdkgcmibiegfhpfkcokmdg
Description Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url
File Size 99.36 KB
Installation Count 217
Current Version 0.4.2
Last Updated 2015-02-24
Publish Date 2015-02-24
Rating 5.00/5 Total 3 Ratings
Developer Janek Lasocki-Biczysko
Payment Type free
Extension Website https://github.com/janeklb/JSKit
Help Page URL https://github.com/janeklb/JSKit/issues?state=open
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSKit",
    "version": "0.4.2",
    "description": "Load JavaScript (and CSS) libraries into any page\/tab, via cdnjs.com or custom url",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "vendors\/jquery.min.js",
            "vendors\/underscore-min.js",
            "vendors\/backbone-min.js",
            "application.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "JSKit",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}