Stop Jump

stop the page redirection and debug through javascript

Stop Jump là gì?

Stop Jump là một tiện ích mở rộng Chrome được phát triển bởi David Zheng(郑铭), và tính năng chính của nó là "stop the page redirection and debug through javascript".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stop Jump

Tải xuống các tệp mở rộng Stop Jump dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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。                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stop Jump Stop Jump
ID mgnkhmbbipomkckdehbemplgcfmepmaf
URL Chính Thức https://chrome.google.com/webstore/detail/stop-jump/mgnkhmbbipomkckdehbemplgcfmepmaf
Mô tả stop the page redirection and debug through javascript
Kích Thước Tệp 14.45 KB
Số Lần Cài Đặt 431
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-04-18
Ngày Phát Hành 2020-04-16
Đánh Giá 3.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển David Zheng(郑铭)
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}