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ファイルをダウンロード

IMA.js Developer Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}