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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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"
    }
}