Stop Jump

stop the page redirection and debug through javascript

Hvad er Stop Jump?

Stop Jump er en Chrome-udvidelse udviklet af David Zheng(郑铭), og dens hovedfunktion er "stop the page redirection and debug through javascript".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Stop Jump-udvidelses-CRX-fil

Download Stop Jump-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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。                    

Grundlæggende oplysninger om udvidelsen

Navn Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
Officiel URL https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
Beskrivelse stop the page redirection and debug through javascript
Filstørrelse 14.45 KB
Antal Installationer 431
Nuværende Version 1.0
Senest Opdateret 2020-04-18
Udgivelsesdato 2020-04-16
Bedømmelse 3.00/5 Samlet 7 Bedømmelser
Udvikler David Zheng(郑铭)
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}