Knockout Context Hover

KnockoutJS Context Hover - Development and debugging assistant for Knockout JS. Tested on: 3.4.2, 3.1.0, 2.2.1

Knockout Context Hoverคืออะไร?

Knockout Context Hover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย papounidis.alex และคุณลักษณะหลักของมันคือ "KnockoutJS Context Hover - Development and debugging assistant for Knockout JS. Tested on: 3.4.2, 3.1.0, 2.2.1"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Knockout Context Hover

ดาวน์โหลดไฟล์ส่วนขยาย Knockout Context Hover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Development and debugging assistant for Knockout JS
https://github.com/alexcodito/KnockoutContextHover

- Display the hovered element's KnockoutJS context, HTML tag and attributes
- Traverse complex objects and arrays
- Set values of variables and observables
- Convert plain variables into observables
- Refresh hovered element's KO bindings
- Log context objects straight into the browser Dev tools console
- Shortcuts for following the mouse cursor & toggling live context
- Click and execute a function

Also available on Mozilla Firefox.

Tested KnockoutJS versions:

    3.4.2
    3.1.0
    2.2.1

Supports KnockoutJS loaded as a RequireJS module. 

HOW TO USE
Right click on a page that runs KnockoutJS and press the "KO Context Hover" option to activate the panel. Shortcuts for controlling mouse pointer following/live context data are present at the top of the panel.

Please note that KnockoutJS makes use of unsafe practices (e.g. eval, innerHTML). This will cause browser validators to flag this extension with several warnings.

Please note that this extension was developed for personal needs. I may not maintain future KoJS version compatibility or provide any support. With that said, please feel free to contribute to the GitHub repo.

PRIVACY POLICY
https://github.com/alexcodito/KnockoutContextHover/blob/master/PRIVACY-POLICY.md                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Knockout Context Hover Knockout Context Hover
ID lcpnkclcbpmhekkjnkomhoecoiobbejf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/knockout-context-hover/lcpnkclcbpmhekkjnkomhoecoiobbejf
คำอธิบาย KnockoutJS Context Hover - Development and debugging assistant for Knockout JS. Tested on: 3.4.2, 3.1.0, 2.2.1
ขนาดไฟล์ 92.1 KB
จำนวนการติดตั้ง 3,882
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2021-01-30
วันที่เผยแพร่ 2020-02-25
คะแนน 3.80/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา papounidis.alex
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/alexcodito/KnockoutContextHover/
URL หน้าช่วยเหลือ https://github.com/alexcodito/KnockoutContextHover/
URL หน้านโยบายความเป็นส่วนตัว https://github.com/alexcodito/KnockoutContextHover/blob/master/PRIVACY-POLICY.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Knockout Context Hover",
    "short_name": "ko-context-hover",
    "description": "KnockoutJS Context Hover - Development and debugging assistant for Knockout JS. Tested on: 3.4.2, 3.1.0, 2.2.1",
    "version": "1.8",
    "manifest_version": 2,
    "author": "Alexandros Papounidis",
    "icons": {
        "32": "icons\/ko-context-hover-logo-32x32.png",
        "64": "icons\/ko-context-hover-logo-64x64.png",
        "128": "icons\/ko-context-hover-logo-128x128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles\/ko-context-hover-style.css"
            ],
            "js": [
                "scripts\/knockoutjs-3.4.2.min.js",
                "scripts\/contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "web_accessible_resources": [
        "markup\/panel.html",
        "scripts\/ko-context-hover.js",
        "reference-binding-handlers\/ko.bindingHandlers.kchHoverClass.js",
        "reference-binding-handlers\/ko.bindingHandlers.kchLet.js"
    ]
}