Debugger Shortcut

Stop javascript execution by pressing a keyboard shortcut.

Debugger Shortcut क्या है?

Debugger Shortcut http://vadim.sikora.name द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stop javascript execution by pressing a keyboard shortcut."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Debugger Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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