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
官方網址 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'"
}