Consent Mode Inspector by InfoTrust

Check the status of Consent Mode, display gcs & gcd parameters, and view real time consent signals.🔐

Consent Mode Inspector by InfoTrust क्या है?

Consent Mode Inspector by InfoTrust ryan.bulcher द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check the status of Consent Mode, display gcs & gcd parameters, and view real time consent signals.🔐"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Consent Mode Inspector by InfoTrust एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Consent Mode Inspector is a lightweight Chrome Extension designed to monitor Google Consent Mode, providing real-time insights into gcs and gcd parameters sent with Google Tags, alongside current signal states found under google_tag_data.ics.entries.

 ─────────── Key Features ───────────

● Real-Time GCS Code Display 
    ↳Instantly view the latest GCS code being sent with a Google Tag.
● Detailed GCD Code Insights
    ↳Understand the latest GCD code with comprehensive explanations of each 
         value.
● Dynamic Table View
    ↳Explore the google_tag_data.ics.entries object directly from the DOM for in- 
        depth analysis. If ad_user_data or ad_personalization are granted or denied, 
        then you have v2 setup.
● Consent History Tracking
    ↳Keep a history of tags fired, including GCS codes and their consent states at 
        the point of firing.
● One-Click Screenshots
    ↳Easily screenshot the extension's display to share the current consent results 
         with your team or for your records.

 ─────────── Update Notes ───────────
● Added Multi Language Support
    ↳English, French, German, Italian, Spanish are supported languages for key 
        words in the extension based on chrome location settings. 

─────────── Feedback and Support ───────────
Your input is invaluable to us! For questions, comments, concerns, feature requests, or bug reports, please feel free to reach out to
    ✉️ [email protected]. 
or visit
    🔗 https://infotrust.com/google-consent-mode-inspector
We're here to assist and look forward to enhancing your experience with Consent Mode Inspector.



⚠️ Please Note ⚠️
This extension serves as a tool for a Google product that is continuously evolving. As such, both Google's product and this extension are subject to changes. We advise not to rely solely on this extension for consent or compliance verification.                    

एक्सटेंशन की मूल जानकारी

नाम Consent Mode Inspector by InfoTrust Consent Mode Inspector by InfoTrust
ID phpllnjdcoiijcpgcbhlocjgcegjfnhb
आधिकारिक URL https://chromewebstore.google.com/detail/consent-mode-inspector-by/phpllnjdcoiijcpgcbhlocjgcegjfnhb
विवरण Check the status of Consent Mode, display gcs & gcd parameters, and view real time consent signals.🔐
फ़ाइल का आकार 302 KB
स्थापना संख्या 1,000
वर्तमान संस्करण 3.2.2
अंतिम अपडेट 2024-03-02
प्रकाशन तिथि 2024-02-13
रेटिंग 5.00/5 कुल 13 रेटिंग्स
डेवलपर ryan.bulcher
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://infotrust.com/google-consent-mode-inspector/?utm_source=chrome+extension&utm_medium=consent+mode+inspector&utm_campaign=popup
गोपनीयता नीति पृष्ठ URL https://app.taginspector.com/privacy_policy
समर्थित भाषाएँ de,en,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Consent Mode Inspector by InfoTrust",
    "short_name": "CoMo Inspector",
    "version": "3.2.2",
    "default_locale": "en",
    "description": "Check the status of Consent Mode, display gcs & gcd parameters, and view real time consent signals.\ud83d\udd10",
    "icons": {
        "128": "\/assets\/logo.png"
    },
    "permissions": [
        "webRequest",
        "storage",
        "downloads"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "world": "MAIN",
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "startup.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}