Site Audit Extension

Extension for site Audit.

Was ist Site Audit Extension?

Site Audit Extension ist eine Chrome-Erweiterung, die von Adpushup entwickelt wurde, und ihr Hauptmerkmal ist "Extension for site Audit.".

Erweiterungsscreenshots

screenshot

Site Audit Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Site Audit Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension is for internal usage of the company, it helps the operations team to analyse the setting on the publisher's website and get page configuration which can be fetched manually. It helps operations team for extracting the information automatically than doing it manually.

Test this on https://www.javatpoint.com/math without any adblockers                    

Grundlegende Informationen zur Erweiterung

Name Site Audit Extension Site Audit Extension
ID komkgjgoffjlpldfpdloocnmphefkfji
Offizielle URL https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji
Beschreibung Extension for site Audit.
Dateigröße 76.67 KB
Installationsanzahl 180
Aktuelle Version 1.2
Letztes Update 2022-09-02
Veröffentlichungsdatum 2022-08-31
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Adpushup
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Site Audit Extension",
    "description": "Extension for site Audit.",
    "version": "1.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icons\/32x32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "dist\/content\/prebid.content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "dist\/content\/gpt.content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "dist\/content\/other.content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "dist\/web-accessible\/prebid.web.js",
                "dist\/web-accessible\/gpt.web.js"
            ]
        }
    ],
    "icons": {
        "32": "\/icons\/32x32.png"
    }
}