Knockoutjs context debugger
Shows the knockout context & data for the selected dom node in a sidebar of the elements pane.
Knockoutjs context debugger란 무엇입니까?
Knockoutjs context debugger은(는) elijahzemlak733에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows the knockout context & data for the selected dom node in a sidebar of the elements pane."입니다.
확장 프로그램 스크린샷
Knockoutjs context debugger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Product features and usage: - Extension supports developers to easily debugger value variables when using the "KnockoutJs" library for their html files. With the form showing the removal & data context for the selected dom button in the sidebar of the element pane. - Knockoutjs debugging extension. + Adds an additional sidebar in the element pane of chrome dev tools with knockout context and relevant data for the selected element. Very useful if you have large/nested views. + Very usefull if you got large/nested viewmodels. + Allows adding traces to everything observable/computable. + Allows editing of observables from the dashboard. So to use the extension, the user's html file must download and use the KnockoutJS library (knockoutjs.com). MIT license. Tip (based on comments) You can view the content of any observable in the viewmodel in the '$root_toJS' variable. ------ Change Log ------- Version-2.6.7: Add "Library Knockout Js" sharing feature to social networks: Twitter, LinkedIn and quickly share links to newsfeed facebook using post api.
확장 프로그램 기본 정보
이름 | |
ID | oddcpmchholgcjgjdnfjmildmlielhof |
공식 URL | https://chromewebstore.google.com/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof |
설명 | Shows the knockout context & data for the selected dom node in a sidebar of the elements pane. |
파일 크기 | 1.12 MB |
설치 횟수 | 26,937 |
현재 버전 | 2.6.8 |
최근 업데이트 | 2023-11-01 |
출시 날짜 | 2014-08-07 |
평점 | 4.28/5 총 186 개의 평점 |
개발자 | elijahzemlak733 |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sites.google.com/view/transformtext/home |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "version": "2.6.8", "manifest_version": 3, "name": "Knockoutjs context debugger", "description": "Shows the knockout context & data for the selected dom node in a sidebar of the elements pane.", "options_ui": { "page": "src\/options\/index.html", "open_in_tab": true }, "devtools_page": "src\/devtool\/devtool.html", "content_scripts": [ { "js": [ "assets\/content-script-loader.index.ts.7c64ed84.6df94f50.js" ], "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/twitter.com\/*", "https:\/\/*.linkedin.com\/*" ] } ], "host_permissions": [ "https:\/\/*.facebook.com\/*", "https:\/\/twitter.com\/*", "https:\/\/*.linkedin.com\/*" ], "permissions": [ "storage", "declarativeNetRequest" ], "icons": { "128": "icon_128.png" }, "web_accessible_resources": [ { "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/*.linkedin.com\/*", "https:\/\/twitter.com\/*" ], "resources": [ "assets\/index.ts.7c64ed84.js" ], "use_dynamic_url": true } ] } |