Site Audit Extension

Extension for site Audit.

ما هو Site Audit Extension؟

Site Audit Extension هو إضافة Chrome تم تطويرها بواسطة Adpushup، والميزة الرئيسية لها هي "Extension for site Audit.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Site Audit Extension

قم بتنزيل ملفات الامتداد Site Audit Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Site Audit Extension Site Audit Extension
ID komkgjgoffjlpldfpdloocnmphefkfji
عنوان URL الرسمي https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji
الوصف Extension for site Audit.
حجم الملف 76.67 KB
عدد التثبيتات 180
النسخة الحالية 1.2
آخر تحديث 2022-09-02
تاريخ النشر 2022-08-31
تقييم 5.00/5 مجموع تقييمات 1
المطور Adpushup
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    }
}