Stop Jump

stop the page redirection and debug through javascript

Qu'est-ce que Stop Jump ?

Stop Jump est une extension Chrome développée par David Zheng(郑铭), et sa fonction principale est "stop the page redirection and debug through javascript".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Stop Jump

Téléchargez les fichiers d'extension Stop Jump au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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。                    

Informations de Base sur l'Extension

Nom Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
URL Officiel https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
Description stop the page redirection and debug through javascript
Taille du Fichier 14.45 KB
Nombre d'Installations 431
Version Actuelle 1.0
Dernière Mise à Jour 2020-04-18
Date de Publication 2020-04-16
Évaluation 3.00/5 Total 7 Évaluations
Développeur David Zheng(郑铭)
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}