Iframe Broker

Extension to log iframe and cross window communications.

Iframe Brokerคืออะไร?

Iframe Broker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://vinothkumar.me และคุณลักษณะหลักของมันคือ "Extension to log iframe and cross window communications."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Iframe Broker

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

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

                        This extension allows you to see the cross window/frame communication happening behind the current tab. You can see in the console logs for the communication message or click the extension icon to see the messages.

***
https://github.com/vinothsparrow/iframe-broker
Free.
Open-source with public license (MIT)
For users by users.

If ever you really do want to contribute something, think about the people working hard to maintain the filter lists you are using, which were made available to use by all for free.

***
Project changelog:
https://github.com/vinothsparrow/iframe-broker/releases

Contributors @ Github:
https://github.com/vinothsparrow/iframe-broker/graphs/contributors                    

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

ชื่อ Iframe Broker Iframe Broker
ID dadacmnmjkbdcfokfchocilakijgfffo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/iframe-broker/dadacmnmjkbdcfokfchocilakijgfffo
คำอธิบาย Extension to log iframe and cross window communications.
ขนาดไฟล์ 146 KB
จำนวนการติดตั้ง 147
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-02-17
วันที่เผยแพร่ 2021-02-17
ผู้พัฒนา http://vinothkumar.me
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vinothsparrow/iframe-broker
URL หน้านโยบายความเป็นส่วนตัว https://github.com/vinothsparrow/iframe-broker/wiki/Privacy-Policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Iframe Broker",
    "description": "Extension to log iframe and cross window communications.",
    "version": "1.0.1",
    "author": "Vinoth Kumar",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Iframe Broker"
    },
    "permissions": [
        "tabs",
        ""
    ]
}