JET DevTools
Useful dev tools for JET developers
ما هو JET DevTools؟
JET DevTools هو إضافة Chrome تم تطويرها بواسطة http://wenlizhi.cn، والميزة الرئيسية لها هي "Useful dev tools for JET developers".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة JET DevTools
قم بتنزيل ملفات الامتداد JET DevTools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
معلومات أساسية عن التمديد
الاسم | |
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" } |