Iframe Broker

Extension to log iframe and cross window communications.

Cos'è Iframe Broker?

Iframe Broker è un'estensione di Chrome sviluppata da http://vinothkumar.me, e la sua funzione principale è "Extension to log iframe and cross window communications.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Iframe Broker

Scarica i file di estensione Iframe Broker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Iframe Broker Iframe Broker
ID dadacmnmjkbdcfokfchocilakijgfffo
URL Ufficiale https://chrome.google.com/webstore/detail/iframe-broker/dadacmnmjkbdcfokfchocilakijgfffo
Descrizione Extension to log iframe and cross window communications.
Dimensione del File 146 KB
Conteggio Installazioni 147
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-02-17
Data di Pubblicazione 2021-02-17
Sviluppatore http://vinothkumar.me
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/vinothsparrow/iframe-broker
URL della Pagina della Politica sulla Privacy https://github.com/vinothsparrow/iframe-broker/wiki/Privacy-Policy
Lingue Supportate 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",
        ""
    ]
}