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