JavaScript Breakpoint Collection

Find what code is responsible for page behavior.

JavaScript Breakpoint Collection란 무엇입니까?

JavaScript Breakpoint Collection은(는) Matt Zeunert에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find what code is responsible for page behavior."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

JavaScript Breakpoint Collection 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        For example, you can pause on page scroll, cookie access or when an alert box is shown.

You can also break when a property on an arbitrary object changes.

Instead of pausing you can also show a trace message.                    

확장 프로그램 기본 정보

이름 JavaScript Breakpoint Collection JavaScript Breakpoint Collection
ID kgpjjblahlmjlfljfpcneapmeblichbp
공식 URL https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp
설명 Find what code is responsible for page behavior.
파일 크기 333 KB
설치 횟수 771
현재 버전 1.7.1
최근 업데이트 2018-11-08
출시 날짜 2018-11-08
평점 5.00/5 총 4 개의 평점
개발자 Matt Zeunert
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mattzeunert/javascript-breakpoint-collection
도움말 페이지 URL https://github.com/mattzeunert/javascript-breakpoint-collection/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JavaScript Breakpoint Collection",
    "manifest_version": 2,
    "version": "1.7.1",
    "description": "Find what code is responsible for page behavior.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "minimum_chrome_version": "10.0",
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "build\/javascript-breakpoint-collection.js"
    ]
}