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
电子邮箱 [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"
}