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…

O que é AEM Chrome Tools?

AEM Chrome Tools é uma extensão do Chrome desenvolvida por druwe.jeroen, e sua principal característica é "This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AEM Chrome Tools

Baixe arquivos de extensão AEM Chrome Tools no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AEM Chrome Tools AEM Chrome Tools
ID eknohlknldmboegkljihbhbfgpnmmlhn
URL Oficial https://chromewebstore.google.com/detail/aem-chrome-tools/eknohlknldmboegkljihbhbfgpnmmlhn
Descrição This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…
Tamanho do Arquivo 533 KB
Contagem de Instalações 65
Versão Atual 0.2
Última Atualização 2019-03-31
Data de Publicação 2019-03-29
Desenvolvedor druwe.jeroen
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Jdruwe/aem-chrome-tools
Idiomas Suportados 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"
}