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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.eduardovargas.engineer และคุณลักษณะหลักของมันคือ "This extension allows you to toggle between AEMs 'View as Published' and authoring view."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AEM View as Published Shortcut

ดาวน์โหลดไฟล์ส่วนขยาย 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'"
}