ALOHA
ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.
Was ist ALOHA?
ALOHA ist eine Chrome-Erweiterung, die von Gustavo Mandolesi entwickelt wurde, und ihr Hauptmerkmal ist "ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.".
Erweiterungsscreenshots
ALOHA-Erweiterungs-CRX-Datei herunterladen
Laden Sie ALOHA-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ahbjhlfandjadfjpnjckomailekbalgi |
| Offizielle URL | https://chromewebstore.google.com/detail/aloha/ahbjhlfandjadfjpnjckomailekbalgi |
| Beschreibung | ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM. |
| Dateigröße | 68.37 KB |
| Installationsanzahl | 170 |
| Aktuelle Version | 0.1 |
| Letztes Update | 2018-04-25 |
| Veröffentlichungsdatum | 2018-04-25 |
| Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
| Entwickler | Gustavo Mandolesi |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |