AEM View as Published Shortcut

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

Was ist AEM View as Published Shortcut?

AEM View as Published Shortcut ist eine Chrome-Erweiterung, die von https://www.eduardovargas.engineer entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to toggle between AEMs 'View as Published' and authoring view.".

Erweiterungsscreenshots

screenshot
screenshot

AEM View as Published Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie AEM View as Published Shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AEM View as Published Shortcut AEM View as Published Shortcut
ID ljnpkkdpjldjbaijkclhafiihonlkinm
Offizielle URL https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm
Beschreibung This extension allows you to toggle between AEMs 'View as Published' and authoring view.
Dateigröße 132 KB
Installationsanzahl 37
Aktuelle Version 0.0.7
Letztes Update 2019-03-11
Veröffentlichungsdatum 2019-03-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://www.eduardovargas.engineer
Zahlungsart free
Unterstützte Sprachen 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'"
}