Debugger Shortcut
Stop javascript execution by pressing a keyboard shortcut.
Debugger Shortcutとは何ですか?
Debugger Shortcutはhttp://vadim.sikora.nameによって開発されたChromeの拡張機能で、その主な機能は「Stop javascript execution by pressing a keyboard shortcut.」です。
Debugger Shortcut拡張機能のCRXファイルをダウンロード
Debugger Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Sometimes you may find yourself in a situation when you want to debug specific dom on the page, but cannot catch the right moment to inspect it. With this extension you can specify a shortcut to quickly enable debugger while it's still on the page.
Works for iframes and nested iframes as well.
Screenshots: http://vadim.sikora.name/debugger-shortcut-extension/ 拡張機能の基本情報
| 名前 | |
| ID | gjaeepjbfieiimehgjfpmaffegliiaea |
| 公式URL | https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea |
| 説明 | Stop javascript execution by pressing a keyboard shortcut. |
| ファイルサイズ | 8.93 KB |
| インストール数 | 29 |
| 現在のバージョン | 0.2.5 |
| 最終更新日 | 2017-06-24 |
| 公開日 | 2017-06-24 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | http://vadim.sikora.name |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/vxsx/debugger-shortcut-extension |
| ヘルプページのURL | https://github.com/vxsx/debugger-shortcut-extension/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Debugger Shortcut",
"version": "0.2.5",
"manifest_version": 2,
"description": "Stop javascript execution by pressing a keyboard shortcut.",
"homepage_url": "http:\/\/github.com\/vxsx\/debugger-shortcut-extension",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"page_action": {
"default_icon": "icons\/icon38.png",
"default_title": "Options for Debugger Shortcut.",
"default_popup": "src\/page_action\/page_action.html"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |