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文件

下载JavaScript Breakpoint Collection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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