IMA.js Developer Tools

Adds IMA.js debugging panel to the Chrome Developer Tools window.

IMA.js Developer Tools란 무엇입니까?

IMA.js Developer Tools은(는) Seznam.cz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds IMA.js debugging panel to the Chrome Developer Tools window."입니다.

확장 프로그램 스크린샷

screenshot

IMA.js Developer Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        IMA.js is a Javascript framework for creating isomorphic applications built on the MVC pattern which uses React for the View layer.

The IMA.js developer tools display messages about method and event calls happening in your IMA.js application. These events are wrapped in proxy-like objects using custom script that gets injected to a page. You can then filter these messages, analyze them, which can help you debug how each component behaves in your application and find potential issues.                    

확장 프로그램 기본 정보

이름 IMA.js Developer Tools IMA.js Developer Tools
ID jckgkffefmgcnbaimdmeoelgpjefpljh
공식 URL https://chromewebstore.google.com/detail/imajs-developer-tools/jckgkffefmgcnbaimdmeoelgpjefpljh
설명 Adds IMA.js debugging panel to the Chrome Developer Tools window.
파일 크기 231 KB
설치 횟수 25
현재 버전 0.3.3
최근 업데이트 2022-04-19
출시 날짜 2020-03-26
개발자 Seznam.cz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://imajs.io/
도움말 페이지 URL https://imajs.io/docs/devtools-introduction
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMA.js Developer Tools",
    "description": "Adds IMA.js debugging panel to the Chrome Developer Tools window.",
    "devtools_page": "html\/devtools.html",
    "permissions": [
        "",
        "webNavigation",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "html\/options.html",
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/icon-dead-16.png",
            "32": "images\/icon-dead-32.png",
            "48": "images\/icon-dead-48.png",
            "128": "images\/icon-dead-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-alive-16.png",
        "32": "images\/icon-alive-32.png",
        "48": "images\/icon-alive-48.png",
        "128": "images\/icon-alive-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "version": "0.3.3"
}