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…

What is AEM Chrome Tools?

AEM Chrome Tools is a Chrome extension developed by druwe.jeroen, and its main feature is "This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…".

Extension Screenshots

screenshot

Download AEM Chrome Tools Extension CRX File

Download AEM Chrome Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AEM Chrome Tools AEM Chrome Tools
ID eknohlknldmboegkljihbhbfgpnmmlhn
Official URL https://chromewebstore.google.com/detail/aem-chrome-tools/eknohlknldmboegkljihbhbfgpnmmlhn
Description This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…
File Size 533 KB
Installation Count 65
Current Version 0.2
Last Updated 2019-03-31
Publish Date 2019-03-29
Developer druwe.jeroen
Email [email protected]
Payment Type free
Extension Website https://github.com/Jdruwe/aem-chrome-tools
Supported Languages 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"
}