AEM View as Published Shortcut

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

什么是AEM View as Published Shortcut?

AEM View as Published Shortcut是由https://www.eduardovargas.engineer开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to toggle between AEMs 'View as Published' and authoring view.”。

扩展截图

screenshot
screenshot

下载AEM View as Published Shortcut扩展crx文件

下载AEM View as Published Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 AEM View as Published Shortcut AEM View as Published Shortcut
ID ljnpkkdpjldjbaijkclhafiihonlkinm
官方URL https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm
简介 This extension allows you to toggle between AEMs 'View as Published' and authoring view.
文件大小 132 KB
安装次数 37
当前版本 0.0.7
更新时间 2019-03-11
上架时间 2019-03-11
评分 5.00/5 共2次评分
开发者 https://www.eduardovargas.engineer
付费类型 free
支持的语言 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'"
}