AEM View as Published Shortcut

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

AEM View as Published Shortcut là gì?

AEM View as Published Shortcut là một tiện ích mở rộng Chrome được phát triển bởi https://www.eduardovargas.engineer, và tính năng chính của nó là "This extension allows you to toggle between AEMs 'View as Published' and authoring view.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AEM View as Published Shortcut

Tải xuống các tệp mở rộng AEM View as Published Shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AEM View as Published Shortcut AEM View as Published Shortcut
ID ljnpkkdpjldjbaijkclhafiihonlkinm
URL Chính Thức https://chromewebstore.google.com/detail/aem-view-as-published-sho/ljnpkkdpjldjbaijkclhafiihonlkinm
Mô tả This extension allows you to toggle between AEMs 'View as Published' and authoring view.
Kích Thước Tệp 132 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2019-03-11
Ngày Phát Hành 2019-03-11
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.eduardovargas.engineer
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}