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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}