JavaScript Breakpoint Collection

Find what code is responsible for page behavior.

Что такое JavaScript Breakpoint Collection?

JavaScript Breakpoint Collection - это расширение Chrome, разработанное Matt Zeunert, и его основная функция - "Find what code is responsible for page behavior.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения JavaScript Breakpoint Collection

Скачайте файлы расширений JavaScript Breakpoint Collection в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        For example, you can pause on page scroll, cookie access or when an alert box is shown.

You can also break when a property on an arbitrary object changes.

Instead of pausing you can also show a trace message.                    

Основная информация о расширении

Название JavaScript Breakpoint Collection JavaScript Breakpoint Collection
ID kgpjjblahlmjlfljfpcneapmeblichbp
Официальный URL https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp
Описание Find what code is responsible for page behavior.
Размер файла 333 KB
Количество установок 771
Текущая Версия 1.7.1
Последнее Обновление 2018-11-08
Дата публикации 2018-11-08
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Matt Zeunert
Тип оплаты free
Официальный сайт расширения https://github.com/mattzeunert/javascript-breakpoint-collection
URL страницы помощи https://github.com/mattzeunert/javascript-breakpoint-collection/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JavaScript Breakpoint Collection",
    "manifest_version": 2,
    "version": "1.7.1",
    "description": "Find what code is responsible for page behavior.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "minimum_chrome_version": "10.0",
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "build\/javascript-breakpoint-collection.js"
    ]
}