Alexa Developer Console Assistant
Be a more productive developer on Alexa Developer Console.
Alexa Developer Console Assistant란 무엇입니까?
Alexa Developer Console Assistant은(는) niknah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Be a more productive developer on Alexa Developer Console."입니다.
확장 프로그램 스크린샷
Alexa Developer Console Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
도움말 페이지 URL | 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" ] } ] } |