Site Audit Extension

Extension for site Audit.

Vad är Site Audit Extension?

Site Audit Extension är en Chrome-tillägg utvecklad av Adpushup, och dess huvudfunktion är "Extension for site Audit.".

Tilläggsskärmbilder

screenshot

Ladda ner Site Audit Extension-förlängningens CRX-fil

Ladda ner Site Audit Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Site Audit Extension Site Audit Extension
ID komkgjgoffjlpldfpdloocnmphefkfji
Officiell webbadress https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji
Beskrivning Extension for site Audit.
Filstorlek 76.67 KB
Antal Installationer 180
Aktuell Version 1.2
Senast Uppdaterad 2022-09-02
Publiceringsdatum 2022-08-31
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Adpushup
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}