ALOHA

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

ALOHAとは何ですか?

ALOHAはGustavo Mandolesiによって開発されたChromeの拡張機能で、その主な機能は「ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.」です。

拡張機能のスクリーンショット

screenshot
screenshot

ALOHA拡張機能のCRXファイルをダウンロード

ALOHA拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 ALOHA ALOHA
ID ahbjhlfandjadfjpnjckomailekbalgi
公式URL https://chromewebstore.google.com/detail/aloha/ahbjhlfandjadfjpnjckomailekbalgi
説明 ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.
ファイルサイズ 68.37 KB
インストール数 170
現在のバージョン 0.1
最終更新日 2018-04-25
公開日 2018-04-25
評価 4.67/5 合計 3 レビュー
開発者 Gustavo Mandolesi
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}