Switchboard

Easily switch between tag management systems, tag manager environments, and switch any string of a network request for anything.

Switchboardคืออะไร?

Switchboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://softcrylic.com และคุณลักษณะหลักของมันคือ "Easily switch between tag management systems, tag manager environments, and switch any string of a network request for anything."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Switchboard

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

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

                        Switchboard is a Google Chrome browser Extension that will ease the day-to-day efforts of working with any tag management system. Product Managers, Developers, and QA teams will also benefit from its power to customize any tag network request.

- For Adobe, it will detect your Adobe Launch Property environments so that, while in production, you can switch them for testing new tag management changes on your website. It does it for Adobe DTM too. Now you can switch from DTM to Launch as well.
- For Google, it will detect your Google Tag Manager embed and flag common implementation issues. 
- For Tealium, it will detect your property and let you switch between Dev, QA, or Prod

The real magic, however, begins when you can switch any tag network request for anything. With Switchboard you can now troubleshoot, debug, and implement any tag with surgical finesse. 

Read all the features and release notes here: https://bitbucket.org/tagmanagerextension/switchboard-release-notes/src/master/ 

It does this all within a beautiful UI split between two tabs:

The Active tab detects what tag manager is implemented on the site, shows you the embed code and, depending on the TMS implemented, will let you seamlessly switch between Production and Development environments. 

The Custom tab gives you the power and flexibility to manually switch any part of any individual tag laser-targeted focus.

In its current version, the Active tab supports Adobe Launch, Adobe DTM, Google Tag Manager, and Tealium use cases. We are working tirelessly to also support other tag managers such as Ensighten. Beyond switching environments, we have incredible tag management implementation features planned.                    

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

ชื่อ Switchboard Switchboard
ID hejaenpnkimpidicaioklecpnjjmmhko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/switchboard/hejaenpnkimpidicaioklecpnjjmmhko
คำอธิบาย Easily switch between tag management systems, tag manager environments, and switch any string of a network request for anything.
ขนาดไฟล์ 509 KB
จำนวนการติดตั้ง 225
เวอร์ชันปัจจุบัน 1.1.7
อัปเดตครั้งล่าสุด 2022-09-19
วันที่เผยแพร่ 2020-09-30
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://softcrylic.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://softcrylic.com/switchboard/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Easily switch between tag management systems, tag manager environments, and switch any string of a network request for anything.",
    "version": "1.1.7",
    "manifest_version": 3,
    "name": "Switchboard",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "declarativeNetRequest",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "home.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "16": "icon-128.png",
        "48": "icon-128.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "all_frames": false,
            "css": []
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "detectTagManagers.bundle.js",
                "contentScript.bundle.js",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}