AEM Explorer

Easily navigate through AEM structure

Co je AEM Explorer?

AEM Explorer je rozšíření Chrome vyvinuté https://zamozniewicz.pl, a jeho hlavní funkcí je „Easily navigate through AEM structure“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření AEM Explorer

Stáhněte si soubory rozšíření AEM Explorer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název AEM Explorer AEM Explorer
ID ccmaglfddhhajghfpiifkjkikabckohn
Oficiální URL https://chromewebstore.google.com/detail/aem-explorer/ccmaglfddhhajghfpiifkjkikabckohn
Popis Easily navigate through AEM structure
Velikost souboru 694 KB
Počet instalací 58
Aktuální Verze 0.0.14
Poslední Aktualizace 2022-09-15
Datum Vydání 2022-01-13
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://zamozniewicz.pl
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/zamozniewicz/aem-explorer
URL Stránky Nápovědy https://github.com/zamozniewicz/aem-explorer/issues
Podporované Jazyky 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"
    }
}