Stop Jump

stop the page redirection and debug through javascript

Cos'è Stop Jump?

Stop Jump è un'estensione di Chrome sviluppata da David Zheng(郑铭), e la sua funzione principale è "stop the page redirection and debug through javascript".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Stop Jump

Scarica i file di estensione Stop Jump in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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。                    

Informazioni di Base sull'Estensione

Nome Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
URL Ufficiale https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
Descrizione stop the page redirection and debug through javascript
Dimensione del File 14.45 KB
Conteggio Installazioni 431
Versione Corrente 1.0
Ultimo Aggiornamento 2020-04-18
Data di Pubblicazione 2020-04-16
Valutazione 3.00/5 Totale 7 Valutazioni
Sviluppatore David Zheng(郑铭)
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}