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文件
下載Alexa Developer Console Assistant擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | bkmgfigngfikpgkobooodneenjdkceoe |
| 官方網址 | 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"
]
}
]
} | |