Iframe Broker

Extension to log iframe and cross window communications.

Τι είναι το Iframe Broker;

Το Iframe Broker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://vinothkumar.me, και η κύρια λειτουργία του είναι "Extension to log iframe and cross window communications.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Iframe Broker

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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",
        ""
    ]
}