AEM Front Extension
Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster.
AEM Front Extension란 무엇입니까?
AEM Front Extension은(는) https://kevinw.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster."입니다.
확장 프로그램 스크린샷
AEM Front Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension works together with the AEM Front module for NPM. It makes work for AEM developers easier by removing the necessity for the painful manual reload of pages. More on https://kevinw.de/aem-front/ A page reload is necessary whenever code changes got deployed into the AEM instance, and not – opposed to static websites – when a HTML or similar file has been saved. Usage: - Use the keyboard shortcut `cmd + e` to switch between WCM Mode "disabled" and "edit". Use the shortcut to automatically open "disabled" if you're on an "edit" page, and the other way around. (If the shortcut doesn't work, click on the page you're on to make sure it is focused. Then try again.) - Click on the app icon to open a popup with multiple configuration options.
확장 프로그램 기본 정보
이름 | AEM Front Extension |
ID | cmpbphecgagbhhociicpakhddeagjlih |
공식 URL | https://chromewebstore.google.com/detail/aem-front-extension/cmpbphecgagbhhociicpakhddeagjlih |
설명 | Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster. |
파일 크기 | 20.08 KB |
설치 횟수 | 402 |
현재 버전 | 0.3 |
최근 업데이트 | 2017-10-28 |
출시 날짜 | 2017-10-27 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://kevinw.de |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AEM Front Extension", "short_name": "AEM Front", "version": "0.3", "author": "Kevin Weber", "homepage_url": "http:\/\/kevinw.de", "description": "Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "base.js", "frontend\/frontend.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "base.js", "background.js" ], "persistent": false }, "externally_connectable": { "matches": [ "*:\/\/*.kevinw.de\/*", "*:\/\/*.kevinweber.org\/*", "*:\/\/*.kevinweber.co\/*", "*:\/\/*.kevinchrisweber.com\/*" ], "accepts_tls_channel_id": false }, "options_ui": { "page": "options\/index.html", "chrome_style": true }, "icons": { "16": "img\/logo\/16.png", "24": "img\/logo\/24.png", "48": "img\/logo\/48.png", "240": "img\/logo\/240.png" }, "browser_action": { "default_icon": "img\/icons\/icon-default.png" }, "permissions": [ "tabs", "storage" ] } |