AEM View as Published Shortcut

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

O que é AEM View as Published Shortcut?

AEM View as Published Shortcut é uma extensão do Chrome desenvolvida por https://www.eduardovargas.engineer, e sua principal característica é "This extension allows you to toggle between AEMs 'View as Published' and authoring view.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão AEM View as Published Shortcut

Baixe arquivos de extensão AEM View as Published Shortcut no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AEM View as Published Shortcut AEM View as Published Shortcut
ID ljnpkkdpjldjbaijkclhafiihonlkinm
URL Oficial https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm
Descrição This extension allows you to toggle between AEMs 'View as Published' and authoring view.
Tamanho do Arquivo 132 KB
Contagem de Instalações 37
Versão Atual 0.0.7
Última Atualização 2019-03-11
Data de Publicação 2019-03-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://www.eduardovargas.engineer
Tipo de Pagamento free
Idiomas Suportados 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'"
}