Adobe Experience Cloud Visual Editing Helper

The Visual Editing Helper extension allows users to load their website into Adobe Target or Adobe Journey Optimizer.

Adobe Experience Cloud Visual Editing Helperคืออะไร?

Adobe Experience Cloud Visual Editing Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adobe Inc. และคุณลักษณะหลักของมันคือ "The Visual Editing Helper extension allows users to load their website into Adobe Target or Adobe Journey Optimizer."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Adobe Experience Cloud Visual Editing Helper

ดาวน์โหลดไฟล์ส่วนขยาย Adobe Experience Cloud Visual Editing Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Visual Editing Helper Chrome extension allows Adobe Experience Cloud users to load their website into Adobe Target or Adobe Journey Optimizer and to use a visual WYSIWYG editor to personalize it. 
The extension solves site-loading issues for which customers now rely on the Target Enhanced Experience Composer or third-party extensions to be able to author their websites.

Benefits of using the Visual Editing Helper extension:
- All iframe busting headers, such as X-Frame-Options and Content-Security-Policy, are implicitly removed from the website to enable authoring. 
- Extension sets SameSite attribute to the value "None" for the website's session cookies in order to be able to login using the visual editor.
- Customers new to Target or to Journey Optimizer can use the extension to experiment even if their IT developers have not yet implemented Target or Journey Optimizer on their websites.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Adobe Experience Cloud Visual Editing Helper Adobe Experience Cloud Visual Editing Helper
ID kgmjjkfjacffaebgpkpcllakjifppnca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/adobe-experience-cloud-vi/kgmjjkfjacffaebgpkpcllakjifppnca
คำอธิบาย The Visual Editing Helper extension allows users to load their website into Adobe Target or Adobe Journey Optimizer.
ขนาดไฟล์ 262 KB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2023-07-22
วันที่เผยแพร่ 2022-06-23
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Adobe Inc.
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://experience.adobe.com
URL หน้านโยบายความเป็นส่วนตัว https://www.adobe.com/privacy/policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adobe Experience Cloud Visual Editing Helper",
    "version": "1.0.5",
    "description": "The Visual Editing Helper extension allows users to load their website into Adobe Target or Adobe Journey Optimizer.",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "32": "assets\/icons\/icon32_grayscale.png",
            "38": "assets\/icons\/icon38_grayscale.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*adobe_authoring_enabled*",
                "*:\/\/*\/*mboxEdit*",
                "*:\/\/*\/*mboxDisable*",
                "*:\/\/*\/*adobe_vec_authoring*"
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*.adobe.com\/*",
                "https:\/\/*.adobe.net\/*",
                "https:\/\/*.adobe.io\/*"
            ],
            "match_origin_as_fallback": true,
            "js": [
                "assets\/vecPostMessage.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/cookieOverride.js",
                "assets\/fileLoader.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "browsingData",
        "notifications",
        "webRequest",
        "webNavigation",
        "cookies",
        "scripting",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "32": "assets\/icons\/icon32.png",
        "38": "assets\/icons\/icon38.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}