JSKit

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

JSKitとは何ですか?

JSKitはJanek Lasocki-Biczyskoによって開発されたChromeの拡張機能で、その主な機能は「Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url」です。

拡張機能のスクリーンショット

screenshot

JSKit拡張機能のCRXファイルをダウンロード

JSKit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

Libraries are pulled from www.cdnjs.com                    

拡張機能の基本情報

名前 JSKit JSKit
ID aopfdhabfojdkgcmibiegfhpfkcokmdg
公式URL https://chrome.google.com/webstore/detail/jskit/aopfdhabfojdkgcmibiegfhpfkcokmdg
説明 Load JavaScript (and CSS) libraries into any page/tab, via cdnjs.com or custom url
ファイルサイズ 99.36 KB
インストール数 217
現在のバージョン 0.4.2
最終更新日 2015-02-24
公開日 2015-02-24
評価 5.00/5 合計 3 レビュー
開発者 Janek Lasocki-Biczysko
支払い方法 free
拡張機能のウェブサイト https://github.com/janeklb/JSKit
ヘルプページのURL https://github.com/janeklb/JSKit/issues?state=open
対応言語 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
}