AEM View as Published Shortcut

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

Wat is AEM View as Published Shortcut?

AEM View as Published Shortcut is een Chrome-extensie ontwikkeld door https://www.eduardovargas.engineer, en de belangrijkste functie is "This extension allows you to toggle between AEMs 'View as Published' and authoring view.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie AEM View as Published Shortcut

Download AEM View as Published Shortcut-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam AEM View as Published Shortcut AEM View as Published Shortcut
ID ljnpkkdpjldjbaijkclhafiihonlkinm
Officiële URL https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm
Beschrijving This extension allows you to toggle between AEMs 'View as Published' and authoring view.
Bestandsgrootte 132 KB
Aantal Installaties 37
Huidige Versie 0.0.7
Laatst Bijgewerkt 2019-03-11
Publicatiedatum 2019-03-11
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.eduardovargas.engineer
Betalingswijze free
Ondersteunde Talen 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'"
}