JET DevTools
Useful dev tools for JET developers
What is JET DevTools?
JET DevTools is a Chrome extension developed by http://wenlizhi.cn, and its main feature is "Useful dev tools for JET developers".
Extension Screenshots
Download JET DevTools Extension CRX File
Download JET DevTools 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
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
Extension Basic Information
Name | |
ID | jkknocakeppojnegclddfaccnmhdedpf |
Official URL | https://chrome.google.com/webstore/detail/jet-devtools/jkknocakeppojnegclddfaccnmhdedpf |
Description | Useful dev tools for JET developers |
File Size | 745 KB |
Installation Count | 113 |
Current Version | 0.3.0 |
Last Updated | 2018-05-22 |
Publish Date | 2018-05-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://wenlizhi.cn |
Payment Type | free |
Extension Website | http://wenlizhi.cn |
Supported Languages | 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" } |