AEM View as Published Shortcut

This extension allows you to toggle between AEMs 'View as Published' and authoring view.

What is AEM View as Published Shortcut?

AEM View as Published Shortcut is a Chrome extension developed by https://www.eduardovargas.engineer, and its main feature is "This extension allows you to toggle between AEMs 'View as Published' and authoring view.".

Extension Screenshots

screenshot
screenshot

Download AEM View as Published Shortcut Extension CRX File

Download AEM View as Published Shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension is meant to enable AEM authors to quickly access the 'View as Published' site preview. 
Once the extension is installed, we recommend that you visit the URL chrome://extensions/shortcuts and assign a keyboard shortcut to the extension for increased productivity. See the second screenshot for an example.                    

Extension Basic Information

Name AEM View as Published Shortcut AEM View as Published Shortcut
ID ljnpkkdpjldjbaijkclhafiihonlkinm
Official URL https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm
Description This extension allows you to toggle between AEMs 'View as Published' and authoring view.
File Size 132 KB
Installation Count 37
Current Version 0.0.7
Last Updated 2019-03-11
Publish Date 2019-03-11
Rating 5.00/5 Total 2 Ratings
Developer https://www.eduardovargas.engineer
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AEM View as Published Shortcut",
    "short_name": "View as Published",
    "description": "This extension allows you to toggle between AEMs 'View as Published' and authoring view.",
    "version": "0.0.7",
    "browser_action": {
        "default_title": "AEM View as Published",
        "default_icon": "images\/icon38.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.adobemsbasic.com\/*",
                "https:\/\/*.adobemsbasic.com\/*"
            ],
            "js": [
                ".\/js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/dev16.png",
        "48": "images\/dev48.png",
        "128": "images\/dev128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}