JET DevTools

Useful dev tools for JET developers

JET DevToolsとは何ですか?

JET DevToolsはhttp://wenlizhi.cnによって開発されたChromeの拡張機能で、その主な機能は「Useful dev tools for JET developers」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Oracle JET is targeted at intermediate to advanced JavaScript developers working on client-side applications. It's a collection of open source JavaScript libraries along with a set of Oracle contributed JavaScript libraries that make it as simple and efficient as possible to build applications that consume and interact with Oracle products and services, especially Oracle Cloud services.

The JET DevTools is used to have a quick debug for dev's daily. 

Guide: https://github.com/wenlz123/chromeextensions-jet-devtools#jet-devtools

Source code: https://github.com/wenlz123/chromeextensions-jet-devtools                    

拡張機能の基本情報

名前 JET DevTools JET DevTools
ID jkknocakeppojnegclddfaccnmhdedpf
公式URL https://chrome.google.com/webstore/detail/jet-devtools/jkknocakeppojnegclddfaccnmhdedpf
説明 Useful dev tools for JET developers
ファイルサイズ 745 KB
インストール数 113
現在のバージョン 0.3.0
最終更新日 2018-05-22
公開日 2018-05-22
評価 5.00/5 合計 1 レビュー
開発者 http://wenlizhi.cn
支払い方法 free
拡張機能のウェブサイト http://wenlizhi.cn
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JET DevTools",
    "version": "0.3.0",
    "description": "Useful dev tools for JET developers",
    "icons": {
        "16": "img\/jet_16.png",
        "48": "img\/jet_48.png",
        "128": "img\/jet_128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "img\/jet_48.png",
        "pages\/devtools-background.html"
    ],
    "devtools_page": "pages\/devtools-background.html"
}