AEM ❤️ Cloud Manager
Google Chrome extension for surfacing information and quick links from AEM as a Cloud Service.
什么是AEM ❤️ Cloud Manager?
AEM ❤️ Cloud Manager是由https://adobedocs-metadata.kestrel-1.io开发的Chrome扩展程序,该扩展的主要功能是“Google Chrome extension for surfacing information and quick links from AEM as a Cloud Service.”。
扩展截图
下载AEM ❤️ Cloud Manager扩展crx文件
下载AEM ❤️ Cloud Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chrome plug-in the scrapes information about the current tab's AEM as a Cloud Service Author service and displays in the plug-in's popup. This plugs surfaces info about the AEM Author service's
* Tenant
* Program
* Environment
* Click-to-copy 'aio cloudmanager:tail-log' commands
* Click-to-copy 'aio cloudmanager:download-logs' commands
* Click-to-copy 'aio cloudmanager:environment-variables' commands
* Stripped down version works on AEM Publish services
* Links to open current window's resource in CRXDE Lite (when on Dev envs)
* Dumps a small (5 levels) content tree for URLs that logically resolve to a content path 扩展基本信息
| 名称 | |
| ID | dniibcfcpfoamlmfjenhadnpnkdggfln |
| 官方URL | https://chromewebstore.google.com/detail/aem-%E2%9D%A4%EF%B8%8F-cloud-manager/dniibcfcpfoamlmfjenhadnpnkdggfln |
| 简介 | Google Chrome extension for surfacing information and quick links from AEM as a Cloud Service. |
| 文件大小 | 177 KB |
| 安装次数 | 85 |
| 当前版本 | 1.5.1 |
| 更新时间 | 2023-09-22 |
| 上架时间 | 2020-09-16 |
| 开发者 | https://adobedocs-metadata.kestrel-1.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AEM \u2764\ufe0f Cloud Manager",
"version": "1.5.1",
"description": "Google Chrome extension for surfacing information and quick links from AEM as a Cloud Service.",
"permissions": [
"activeTab",
"declarativeContent"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.adobeaemcloud.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icon128.png",
"48": "icon128.png",
"128": "icon128.png"
},
"manifest_version": 2
} | |