AEM Chrome Tools

This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…

什么是AEM Chrome Tools?

AEM Chrome Tools是由druwe.jeroen开发的Chrome扩展程序,该扩展的主要功能是“This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…”。

扩展截图

screenshot

下载AEM Chrome Tools扩展crx文件

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

扩展使用说明

                        This Chrome extension will make your life as an AEM developer a bit easier.

TESTED ON:

- 6.3
- 6.4

FEATURES:

- Environment Display
    - This feature will allow you to easily identify which environment you are working on
- Component Detail
    - This feature will allow you to easily open up the corresponding node of your component in CRX Develop.                    

扩展基本信息

名称 AEM Chrome Tools AEM Chrome Tools
ID eknohlknldmboegkljihbhbfgpnmmlhn
官方URL https://chromewebstore.google.com/detail/aem-chrome-tools/eknohlknldmboegkljihbhbfgpnmmlhn
简介 This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…
文件大小 533 KB
安装次数 65
当前版本 0.2
更新时间 2019-03-31
上架时间 2019-03-29
开发者 druwe.jeroen
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Jdruwe/aem-chrome-tools
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AEM Chrome Tools",
    "version": "0.2",
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-environment-display.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*editor.html*",
                "https:\/\/*\/*editor.html*"
            ],
            "js": [
                "content-component-detail.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html"
}