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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ALOHA एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}