AEM Explorer

Easily navigate through AEM structure

O que é AEM Explorer?

AEM Explorer é uma extensão do Chrome desenvolvida por https://zamozniewicz.pl, e sua principal característica é "Easily navigate through AEM structure".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AEM Explorer

Baixe arquivos de extensão AEM Explorer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome AEM Explorer AEM Explorer
ID ccmaglfddhhajghfpiifkjkikabckohn
URL Oficial https://chromewebstore.google.com/detail/aem-explorer/ccmaglfddhhajghfpiifkjkikabckohn
Descrição Easily navigate through AEM structure
Tamanho do Arquivo 694 KB
Contagem de Instalações 58
Versão Atual 0.0.14
Última Atualização 2022-09-15
Data de Publicação 2022-01-13
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://zamozniewicz.pl
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/zamozniewicz/aem-explorer
URL da Página de Ajuda https://github.com/zamozniewicz/aem-explorer/issues
Idiomas Suportados 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"
    }
}