Stop Jump

stop the page redirection and debug through javascript

Stop Jumpคืออะไร?

Stop Jump เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Zheng(郑铭) และคุณลักษณะหลักของมันคือ "stop the page redirection and debug through javascript"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stop Jump

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}