ALOHA

ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.

O que é ALOHA?

ALOHA é uma extensão do Chrome desenvolvida por Gustavo Mandolesi, e sua principal característica é "ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão ALOHA

Baixe arquivos de extensão ALOHA 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 extension does two little things:

1) It removes the Browser Sync button from the top left of pages;

2) When clicked, it removes the "/cf#" from the page URL, adds "wcmmode=disabled" to it and opens the page in a new tab.

Really simple, actually.

* It's still in beta version. Thanks for trying and use it at your own risk.                    

Informações Básicas da Extensão

Nome ALOHA ALOHA
ID ahbjhlfandjadfjpnjckomailekbalgi
URL Oficial https://chromewebstore.google.com/detail/aloha/ahbjhlfandjadfjpnjckomailekbalgi
Descrição ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.
Tamanho do Arquivo 68.37 KB
Contagem de Instalações 170
Versão Atual 0.1
Última Atualização 2018-04-25
Data de Publicação 2018-04-25
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor Gustavo Mandolesi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ALOHA",
    "description": "ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}