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(郑铭)
Eメール [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"
    }
}