Iframe Broker

Extension to log iframe and cross window communications.

Vad är Iframe Broker?

Iframe Broker är en Chrome-tillägg utvecklad av http://vinothkumar.me, och dess huvudfunktion är "Extension to log iframe and cross window communications.".

Tilläggsskärmbilder

screenshot

Ladda ner Iframe Broker-förlängningens CRX-fil

Ladda ner Iframe Broker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Iframe Broker Iframe Broker
ID dadacmnmjkbdcfokfchocilakijgfffo
Officiell webbadress https://chrome.google.com/webstore/detail/iframe-broker/dadacmnmjkbdcfokfchocilakijgfffo
Beskrivning Extension to log iframe and cross window communications.
Filstorlek 146 KB
Antal Installationer 147
Aktuell Version 1.0.1
Senast Uppdaterad 2021-02-17
Publiceringsdatum 2021-02-17
Utvecklare http://vinothkumar.me
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/vinothsparrow/iframe-broker
URL till Sekretesspolicy Sidan https://github.com/vinothsparrow/iframe-broker/wiki/Privacy-Policy
Stödda Språk 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",
        ""
    ]
}