Iframe Broker

Extension to log iframe and cross window communications.

什麼是Iframe Broker?

Iframe Broker是由http://vinothkumar.me開發的Chrome擴展程式,該擴展的主要功能是“Extension to log iframe and cross window communications.”。

擴展截圖

screenshot

下載Iframe Broker擴展crx文件

下載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
官方網址 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",
        ""
    ]
}