AEM Explorer

Easily navigate through AEM structure

什么是AEM Explorer?

AEM Explorer是由https://zamozniewicz.pl开发的Chrome扩展程序,该扩展的主要功能是“Easily navigate through AEM structure”。

扩展截图

screenshot
screenshot
screenshot

下载AEM Explorer扩展crx文件

下载AEM Explorer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Working with Adobe Experience Manager can be very repetitive. AEM Explorer aims to simplify the mundane, repetitive tasks and make it easier to work with AEM for platform developers, testers and content authors.

AEM Explorer allows you to quickly switch contexts and easily access Adobe Experience Manager consoles and pages:

* Open the current page in other WCM modes: disabled/edit/preview/design
* View the currently opened path in CRX, Page Properties or Edit mode
* Persist "wcmmode=disabled" parameter for outbound links ("Persist disabled mode" switch)
* Easily access AEM consoles and pages with a single click
* Change the context either with the extension toolbar button, or with Chrome context menu

Feature requests and issues can be reported at:
https://github.com/zamozniewicz/aem-explorer                    

扩展基本信息

名称 AEM Explorer AEM Explorer
ID ccmaglfddhhajghfpiifkjkikabckohn
官方URL https://chromewebstore.google.com/detail/aem-explorer/ccmaglfddhhajghfpiifkjkikabckohn
简介 Easily navigate through AEM structure
文件大小 694 KB
安装次数 58
当前版本 0.0.14
更新时间 2022-09-15
上架时间 2022-01-13
评分 5.00/5 共3次评分
开发者 https://zamozniewicz.pl
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/zamozniewicz/aem-explorer
帮助页面URL https://github.com/zamozniewicz/aem-explorer/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AEM Explorer",
    "description": "Easily navigate through AEM structure",
    "version": "0.0.14",
    "author": "Adam Zamozniewicz",
    "permissions": [
        "activeTab",
        "contextMenus",
        "cookies",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/static\/js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "24": "icons\/icon-24.png",
        "32": "icons\/icon-32.png",
        "128": "icons\/icon-128.png",
        "512": "icons\/icon-512.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "24": "icons\/icon-24.png",
            "32": "icons\/icon-32.png",
            "128": "icons\/icon-128.png",
            "512": "icons\/icon-512.png"
        },
        "default_title": "AEM Explorer",
        "default_popup": "index.html"
    }
}