Stop Jump

stop the page redirection and debug through javascript

Stop Jump क्या है?

Stop Jump David Zheng(郑铭) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "stop the page redirection and debug through javascript"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

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

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

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

                        1. This extention can block page redirect by javascript 'location.href' or 'location.replace'。
2. Also, you can use chrome developer to debug which line of your code redirect。                    

एक्सटेंशन की मूल जानकारी

नाम Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
आधिकारिक URL https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
विवरण stop the page redirection and debug through javascript
फ़ाइल का आकार 14.45 KB
स्थापना संख्या 431
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-04-18
प्रकाशन तिथि 2020-04-16
रेटिंग 3.00/5 कुल 7 रेटिंग्स
डेवलपर David Zheng(郑铭)
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop Jump",
    "version": "1.0",
    "description": "stop the page redirection and debug through javascript",
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/common.js"
            ],
            "css": [
                "css\/tip.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/pageStop.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/pageDebug.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/icon.png"
    }
}