Alexa Developer Console Assistant
Be a more productive developer on Alexa Developer Console.
ما هو Alexa Developer Console Assistant؟
Alexa Developer Console Assistant هو إضافة Chrome تم تطويرها بواسطة niknah، والميزة الرئيسية لها هي "Be a more productive developer on Alexa Developer Console.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Alexa Developer Console Assistant
قم بتنزيل ملفات الامتداد Alexa Developer Console Assistant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds some features for the Amazon Alexa Developer Console Test tab: A repeat button in the test tab for saying the same thing again. Distribution tab: copy locale button in the distribution screen to copy the info to other locales in the same language. Build tab: Json editor has a copy link to copy the json to other locales of the same language. Cloudwatch logs: A "tail latest logs" link to automatically open up the latest logs or when you press refresh.
معلومات أساسية عن التمديد
الاسم | Alexa Developer Console Assistant |
ID | bkmgfigngfikpgkobooodneenjdkceoe |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe |
الوصف | Be a more productive developer on Alexa Developer Console. |
حجم الملف | 16.6 KB |
عدد التثبيتات | 47 |
النسخة الحالية | 0.0.4 |
آخر تحديث | 2020-11-07 |
تاريخ النشر | 2020-07-04 |
المطور | niknah |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://groups.google.com/d/forum/weezeewig-chrome-extensions |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Alexa Developer Console Assistant", "description": "Be a more productive developer on Alexa Developer Console.", "version": "0.0.4", "manifest_version": 2, "icons": { "128": "icon_128.png" }, "permissions": [ "activeTab", "storage", "clipboardRead" ], "content_scripts": [ { "matches": [ "https:\/\/developer.amazon.com\/alexa\/console\/ask\/test\/*", "https:\/\/developer.amazon.com\/alexa\/console\/ask\/build\/*", "https:\/\/developer.amazon.com\/alexa\/console\/ask\/publish\/*", "https:\/\/console.aws.amazon.com\/cloudwatch\/home*", "https:\/\/*.console.aws.amazon.com\/cloudwatch\/home*" ], "run_at": "document_idle", "exclude_matches": [], "js": [ "AlexaDevConsoleAssist.js" ] } ] } |