JET DevTools

Useful dev tools for JET developers

Cos'è JET DevTools?

JET DevTools è un'estensione di Chrome sviluppata da http://wenlizhi.cn, e la sua funzione principale è "Useful dev tools for JET developers".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione JET DevTools

Scarica i file di estensione JET DevTools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome JET DevTools JET DevTools
ID jkknocakeppojnegclddfaccnmhdedpf
URL Ufficiale https://chrome.google.com/webstore/detail/jet-devtools/jkknocakeppojnegclddfaccnmhdedpf
Descrizione Useful dev tools for JET developers
Dimensione del File 745 KB
Conteggio Installazioni 113
Versione Corrente 0.3.0
Ultimo Aggiornamento 2018-05-22
Data di Pubblicazione 2018-05-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://wenlizhi.cn
Tipo di Pagamento free
Sito Web dell'Estensione http://wenlizhi.cn
Lingue Supportate 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"
}