ALOHA

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

ALOHAคืออะไร?

ALOHA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย ALOHA

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}