Alexa Developer Console Assistant
Be a more productive developer on Alexa Developer Console.
Was ist Alexa Developer Console Assistant?
Alexa Developer Console Assistant ist eine Chrome-Erweiterung, die von niknah entwickelt wurde, und ihr Hauptmerkmal ist "Be a more productive developer on Alexa Developer Console.".
Erweiterungsscreenshots
Alexa Developer Console Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Alexa Developer Console Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Alexa Developer Console Assistant |
ID | bkmgfigngfikpgkobooodneenjdkceoe |
Offizielle URL | https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe |
Beschreibung | Be a more productive developer on Alexa Developer Console. |
Dateigröße | 16.6 KB |
Installationsanzahl | 47 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2020-11-07 |
Veröffentlichungsdatum | 2020-07-04 |
Entwickler | niknah |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://groups.google.com/d/forum/weezeewig-chrome-extensions |
Unterstützte Sprachen | 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" ] } ] } |