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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}