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