GPT site checker

Check your site for errors in ads delivery

GPT site checkerคืออะไร?

GPT site checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chupe และคุณลักษณะหลักของมันคือ "Check your site for errors in ads delivery"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT site checker

ดาวน์โหลดไฟล์ส่วนขยาย GPT site checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        For Lupon Media managed sites only. Try akos.ba to test the features.

This is a Chrome extension created to automate some of the checks for proper setup required for displaying of GPT tags.

It goes trough the GPT tags, divs and proprietary (Lupon Media) script on the site.

It has an additional feature to highlight all ad units on the page coloring them and providing ability to swiftly check all the sizes by clicking.

Information is stored using storage API and all errors regarding individual ad units are display in the extension popup window.

Storage details can be displayed in the popup.

One of my first project so totaly laughable by a proper dev. :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GPT site checker GPT site checker
ID affbgdlmdnaahijhndilbecckienmdjj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gpt-site-checker/affbgdlmdnaahijhndilbecckienmdjj
คำอธิบาย Check your site for errors in ads delivery
ขนาดไฟล์ 211 KB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2020-12-29
วันที่เผยแพร่ 2020-12-29
ผู้พัฒนา chupe
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GPT site checker",
    "description": "Check your site for errors in ads delivery",
    "version": "0.1",
    "author": "[email protected]",
    "background": {
        "page": ".\/backgroundPage\/background.html",
        "persistent": false
    },
    "browser_action": {
        "default_popup": ".\/popupPage\/popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/content\/jquery-3.3.1.js",
                "\/content\/eventFunctions.js",
                "\/content\/content.js"
            ],
            "css": [
                "\/content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/content\/gpt-access.js"
    ],
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "options_page": ".\/optionsPage\/options.html",
    "permissions": [
        "storage",
        "activeTab"
    ]
}