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
公式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
Eメール [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",
        ""
    ]
}