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은(는) papounidis.alex에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Knockout Context Hover 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    ]
}