Iframe Broker

Extension to log iframe and cross window communications.

O que é Iframe Broker?

Iframe Broker é uma extensão do Chrome desenvolvida por http://vinothkumar.me, e sua principal característica é "Extension to log iframe and cross window communications.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Iframe Broker

Baixe arquivos de extensão Iframe Broker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Iframe Broker Iframe Broker
ID dadacmnmjkbdcfokfchocilakijgfffo
URL Oficial https://chrome.google.com/webstore/detail/iframe-broker/dadacmnmjkbdcfokfchocilakijgfffo
Descrição Extension to log iframe and cross window communications.
Tamanho do Arquivo 146 KB
Contagem de Instalações 147
Versão Atual 1.0.1
Última Atualização 2021-02-17
Data de Publicação 2021-02-17
Desenvolvedor http://vinothkumar.me
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/vinothsparrow/iframe-broker
URL da Página de Política de Privacidade https://github.com/vinothsparrow/iframe-broker/wiki/Privacy-Policy
Idiomas Suportados 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",
        ""
    ]
}