postMessage debugger
This extension prints messages sent with postMessage to the console
Co to jest postMessage debugger?
postMessage debugger to rozszerzenie Chrome opracowane przez wille.eklund, a jego główną funkcją jest „This extension prints messages sent with postMessage to the console”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia postMessage debugger
Pobierz pliki rozszerzeń postMessage debugger 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
This chrome extension prints messages sent with postMessage to the console for debugging. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ibnkhbkkelpcgofjlfnlanbigclpldad |
| Oficjalny URL | https://chromewebstore.google.com/detail/postmessage-debugger/ibnkhbkkelpcgofjlfnlanbigclpldad |
| Opis | This extension prints messages sent with postMessage to the console |
| Rozmiar pliku | 3.61 KB |
| Liczba instalacji | 4,982 |
| Aktualna Wersja | 0.2.0 |
| Ostatnia Aktualizacja | 2018-11-28 |
| Data Publikacji | 2018-11-23 |
| Ocena | 4.58/5 Łącznie 12 Oceny |
| Deweloper | wille.eklund |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "postMessage debugger",
"description": "This extension prints messages sent with postMessage to the console",
"version": "0.2.0",
"browser_action": {
"name": "Debug postMessages"
},
"content_scripts": [
{
"js": [
"js\/postMessage-debugger.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"all_frames": true
}
]
} | |