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.”。
擴展截圖
下載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 |
ID | kgpjjblahlmjlfljfpcneapmeblichbp |
官方網址 | 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" ] } |