JavaScript Breakpoint Collection

Find what code is responsible for page behavior.

Co to jest JavaScript Breakpoint Collection?

JavaScript Breakpoint Collection to rozszerzenie Chrome opracowane przez Matt Zeunert, a jego główną funkcją jest „Find what code is responsible for page behavior.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia JavaScript Breakpoint Collection

Pobierz pliki rozszerzeń JavaScript Breakpoint Collection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa JavaScript Breakpoint Collection JavaScript Breakpoint Collection
ID kgpjjblahlmjlfljfpcneapmeblichbp
Oficjalny URL https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp
Opis Find what code is responsible for page behavior.
Rozmiar pliku 333 KB
Liczba instalacji 771
Aktualna Wersja 1.7.1
Ostatnia Aktualizacja 2018-11-08
Data Publikacji 2018-11-08
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Matt Zeunert
Typ Płatności free
Strona Rozszerzenia https://github.com/mattzeunert/javascript-breakpoint-collection
Adres URL Strony Pomocy https://github.com/mattzeunert/javascript-breakpoint-collection/issues
Obsługiwane Języki 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"
    ]
}