Debugger Shortcut

Stop javascript execution by pressing a keyboard shortcut.

Debugger Shortcutคืออะไร?

Debugger Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://vadim.sikora.name และคุณลักษณะหลักของมันคือ "Stop javascript execution by pressing a keyboard shortcut."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Debugger Shortcut

ดาวน์โหลดไฟล์ส่วนขยาย 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/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Debugger Shortcut Debugger Shortcut
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"
            ]
        }
    ]
}