ALOHA

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

Cos'è ALOHA?

ALOHA è un'estensione di Chrome sviluppata da Gustavo Mandolesi, e la sua funzione principale è "ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ALOHA

Scarica i file di estensione ALOHA 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 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.                    

Informazioni di Base sull'Estensione

Nome ALOHA ALOHA
ID ahbjhlfandjadfjpnjckomailekbalgi
URL Ufficiale https://chromewebstore.google.com/detail/aloha/ahbjhlfandjadfjpnjckomailekbalgi
Descrizione ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.
Dimensione del File 68.37 KB
Conteggio Installazioni 170
Versione Corrente 0.1
Ultimo Aggiornamento 2018-04-25
Data di Pubblicazione 2018-04-25
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore Gustavo Mandolesi
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}