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
Eメール [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"
    }
}