Iframe Broker

Extension to log iframe and cross window communications.

Iframe Broker là gì?

Iframe Broker là một tiện ích mở rộng Chrome được phát triển bởi http://vinothkumar.me, và tính năng chính của nó là "Extension to log iframe and cross window communications.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Iframe Broker

Tải xuống các tệp mở rộng Iframe Broker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Iframe Broker Iframe Broker
ID dadacmnmjkbdcfokfchocilakijgfffo
URL Chính Thức https://chrome.google.com/webstore/detail/iframe-broker/dadacmnmjkbdcfokfchocilakijgfffo
Mô tả Extension to log iframe and cross window communications.
Kích Thước Tệp 146 KB
Số Lần Cài Đặt 147
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-02-17
Ngày Phát Hành 2021-02-17
Nhà Phát Triển http://vinothkumar.me
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/vinothsparrow/iframe-broker
URL Trang Chính Sách Bảo Mật https://github.com/vinothsparrow/iframe-broker/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}