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…

Cos'è AEM Chrome Tools?

AEM Chrome Tools è un'estensione di Chrome sviluppata da druwe.jeroen, e la sua funzione principale è "This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AEM Chrome Tools

Scarica i file di estensione AEM Chrome Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AEM Chrome Tools AEM Chrome Tools
ID eknohlknldmboegkljihbhbfgpnmmlhn
URL Ufficiale https://chromewebstore.google.com/detail/aem-chrome-tools/eknohlknldmboegkljihbhbfgpnmmlhn
Descrizione This Chrome extension will make your life as an AEM developer a bit easier. TESTED ON: - 6.3 - 6.4 FEATURES: - Environment…
Dimensione del File 533 KB
Conteggio Installazioni 65
Versione Corrente 0.2
Ultimo Aggiornamento 2019-03-31
Data di Pubblicazione 2019-03-29
Sviluppatore druwe.jeroen
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Jdruwe/aem-chrome-tools
Lingue Supportate 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"
}