AEM Front Extension

Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster.

AEM Front Extensionคืออะไร?

AEM Front Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kevinw.de และคุณลักษณะหลักของมันคือ "Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AEM Front Extension

ดาวน์โหลดไฟล์ส่วนขยาย AEM Front Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    ]
}