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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}