Stop Jump

stop the page redirection and debug through javascript

Wat is Stop Jump?

Stop Jump is een Chrome-extensie ontwikkeld door David Zheng(郑铭), en de belangrijkste functie is "stop the page redirection and debug through javascript".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Stop Jump

Download Stop Jump-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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。                    

Basisinformatie over de Extensie

Naam Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
Officiële URL https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
Beschrijving stop the page redirection and debug through javascript
Bestandsgrootte 14.45 KB
Aantal Installaties 431
Huidige Versie 1.0
Laatst Bijgewerkt 2020-04-18
Publicatiedatum 2020-04-16
Beoordeling 3.00/5 Totaal 7 Beoordelingen
Ontwikkelaar David Zheng(郑铭)
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}