JavaScript Breakpoint Collection

Find what code is responsible for page behavior.

Cos'è JavaScript Breakpoint Collection?

JavaScript Breakpoint Collection è un'estensione di Chrome sviluppata da Matt Zeunert, e la sua funzione principale è "Find what code is responsible for page behavior.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione JavaScript Breakpoint Collection

Scarica i file di estensione JavaScript Breakpoint Collection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome JavaScript Breakpoint Collection JavaScript Breakpoint Collection
ID kgpjjblahlmjlfljfpcneapmeblichbp
URL Ufficiale https://chromewebstore.google.com/detail/javascript-breakpoint-col/kgpjjblahlmjlfljfpcneapmeblichbp
Descrizione Find what code is responsible for page behavior.
Dimensione del File 333 KB
Conteggio Installazioni 771
Versione Corrente 1.7.1
Ultimo Aggiornamento 2018-11-08
Data di Pubblicazione 2018-11-08
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Matt Zeunert
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mattzeunert/javascript-breakpoint-collection
URL della Pagina di Aiuto https://github.com/mattzeunert/javascript-breakpoint-collection/issues
Lingue Supportate 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"
    ]
}