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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add BrowserSync script to all relevant AEM pages. Plus extras to get work done faster."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AEM Front Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}