Iframe Broker

Extension to log iframe and cross window communications.

Iframe Broker란 무엇입니까?

Iframe Broker은(는) http://vinothkumar.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to log iframe and cross window communications."입니다.

확장 프로그램 스크린샷

screenshot

Iframe Broker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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",
        ""
    ]
}