Stop Jump

stop the page redirection and debug through javascript

Was ist Stop Jump?

Stop Jump ist eine Chrome-Erweiterung, die von David Zheng(郑铭) entwickelt wurde, und ihr Hauptmerkmal ist "stop the page redirection and debug through javascript".

Erweiterungsscreenshots

screenshot
screenshot

Stop Jump-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stop Jump-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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。                    

Grundlegende Informationen zur Erweiterung

Name Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
Offizielle URL https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
Beschreibung stop the page redirection and debug through javascript
Dateigröße 14.45 KB
Installationsanzahl 431
Aktuelle Version 1.0
Letztes Update 2020-04-18
Veröffentlichungsdatum 2020-04-16
Bewertung 3.00/5 Insgesamt 7 Bewertungen
Entwickler David Zheng(郑铭)
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}