ALOHA
ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.
Vad är ALOHA?
ALOHA är en Chrome-tillägg utvecklad av Gustavo Mandolesi, och dess huvudfunktion är "ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM.".
Tilläggsskärmbilder
Ladda ner ALOHA-förlängningens CRX-fil
Ladda ner ALOHA-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | ALOHA |
ID | ahbjhlfandjadfjpnjckomailekbalgi |
Officiell webbadress | https://chromewebstore.google.com/detail/aloha/ahbjhlfandjadfjpnjckomailekbalgi |
Beskrivning | ALOHA (Another Little Ordinary Hack for AEM) is supposed to make your life a little bit easier when working with AEM. |
Filstorlek | 68.37 KB |
Antal Installationer | 170 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2018-04-25 |
Publiceringsdatum | 2018-04-25 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | Gustavo Mandolesi |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |