Launch and DTM Switch

Enables the developer to locally override the embedded Launch or DTM library for testing.

Launch and DTM Switchคืออะไร?

Launch and DTM Switch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Search Discovery และคุณลักษณะหลักของมันคือ "Enables the developer to locally override the embedded Launch or DTM library for testing."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Launch and DTM Switch

ดาวน์โหลดไฟล์ส่วนขยาย Launch and DTM Switch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Allows environment selection and debug toggling for DTM and Launch, by Adobe. 

This handy extension from the analytics team at Search Discovery allows you to select environments for Adobe Launch and to toggle the debug and staging mode for Adobe Dynamic Tag Management.  The debug mode tells the DTM or Launch library to add application messaging to the console. The staging mode for DTM uses the staging library instead of the production library.  For sites using Adobe Launch, the switch allows easy switching of environments within a property. 

Once installed, an icon will appear in the address bar when a site has Adobe Launch or DTM installed.  Click on the icon to expose the control panel.

Notice of anonymous usage tracking:  This extension tracks anonymous usage data.  This data helps us understand usage patterns in order to provide a better product. We track interactions within this extension and nothing else. If you would like to opt out of this tracking, just press the gear icon in the upper right of any panel and click “No.”

---------------
v3.0.2 Update Notes
- Fixed environment detection issue

v3.0.1 Update Notes
- Moved to manifest V3 using declarativeNetRequest 

v2.0.14 Update Notes
- This release resolves an issue that was causing "Record Environments" to fail due to changes made by Adobe.

v2.0.13 Update Notes
- Removed "Tabs" permission as it was not necessary.

v2.0.12 Update Notes
- Another Fix for "Record Environments" functionality ("x-gw-ims-org-id" is now a required header for Launch API)

v2.0.11 Update Notes
- Fix for "Record Environments" functionality

v2.0.10 Update Notes
- Fixes for Adobe's new framing of Launch within experience.adobe.com

v2.0.9 - Cosmetic Changes Only

v2.0.8 Update Notes
- Support for 99 Environments per Launch Property (previously 25)

v2.0.7 Update Notes
- Updated Launch API Endpoint

v2.0.6 Update Notes
- Added support for DTM linked launch properties
- Added "Clear Environments" button on the settings tab
- Allow for Launch debugging to be activated when no environments are recorded


Our overhaul of this extension is part of Search Discovery’s larger commitment to the Launch, by Adobe platform and to our clients as they migrate.  Find out more about Search Discovery’s solutions for Launch, by Adobe.

Feedback : [email protected]                    

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

ชื่อ Launch and DTM Switch Launch and DTM Switch
ID nlgdemkdapolikbjimjajpmonpbpmipk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/launch-and-dtm-switch/nlgdemkdapolikbjimjajpmonpbpmipk
คำอธิบาย Enables the developer to locally override the embedded Launch or DTM library for testing.
ขนาดไฟล์ 215 KB
จำนวนการติดตั้ง 32,068
เวอร์ชันปัจจุบัน 3.0.2
อัปเดตครั้งล่าสุด 2023-01-24
วันที่เผยแพร่ 2020-03-06
คะแนน 3.13/5 รวมทั้งหมด 194 คะแนน
ผู้พัฒนา Search Discovery
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.searchdiscovery.com
URL หน้าช่วยเหลือ https://www.searchdiscovery.com/solutions/partners/adobe/adobe-launch/launch-dtm-switch/
URL หน้านโยบายความเป็นส่วนตัว https://www.searchdiscovery.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Launch and DTM Switch",
    "short_name": "Launch Switch",
    "description": "Enables the developer to locally override the embedded Launch or DTM library for testing.",
    "version": "3.0.2",
    "permissions": [
        "activeTab",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/www.google-analytics.com\/",
        "*:\/\/*\/*"
    ],
    "icons": {
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Launch Switch",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/experience.adobe.com\/*"
            ],
            "js": [
                "adobe-content-script.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/experience.adobe.com\/*"
            ],
            "js": [
                "site-content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": {
        "script-src": "'self' https:\/\/www.google-analytics.com",
        "object-src": "'self'"
    },
    "manifest_version": 3
}