IMA.js Developer Tools

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

IMA.js Developer Toolsคืออะไร?

IMA.js Developer Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Seznam.cz และคุณลักษณะหลักของมันคือ "Adds IMA.js debugging panel to the Chrome Developer Tools window."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IMA.js Developer Tools

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}

ส่วนขยายที่เกี่ยวข้อง