Stop Jump

stop the page redirection and debug through javascript

什么是Stop Jump?

Stop Jump是由David Zheng(郑铭)开发的Chrome扩展程序,该扩展的主要功能是“stop the page redirection and debug through javascript”。

扩展截图

screenshot
screenshot

下载Stop Jump扩展crx文件

下载Stop Jump扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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。                    

扩展基本信息

名称 Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
官方URL https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
简介 stop the page redirection and debug through javascript
文件大小 14.45 KB
安装次数 431
当前版本 1.0
更新时间 2020-04-18
上架时间 2020-04-16
评分 3.00/5 共7次评分
开发者 David Zheng(郑铭)
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}