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
官方網址 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"
    }
}