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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | ahbjhlfandjadfjpnjckomailekbalgi |
| 官方網址 | 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"
]
} | |