Iframe Broker

Extension to log iframe and cross window communications.

Qu'est-ce que Iframe Broker ?

Iframe Broker est une extension Chrome développée par http://vinothkumar.me, et sa fonction principale est "Extension to log iframe and cross window communications.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Iframe Broker

Téléchargez les fichiers d'extension Iframe Broker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Iframe Broker Iframe Broker
ID dadacmnmjkbdcfokfchocilakijgfffo
URL Officiel https://chrome.google.com/webstore/detail/iframe-broker/dadacmnmjkbdcfokfchocilakijgfffo
Description Extension to log iframe and cross window communications.
Taille du Fichier 146 KB
Nombre d'Installations 147
Version Actuelle 1.0.1
Dernière Mise à Jour 2021-02-17
Date de Publication 2021-02-17
Développeur http://vinothkumar.me
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/vinothsparrow/iframe-broker
URL de la Page de Politique de Confidentialité https://github.com/vinothsparrow/iframe-broker/wiki/Privacy-Policy
Langues Prises en Charge 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",
        ""
    ]
}