Cookies Extractor
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
Co to jest Cookies Extractor?
Cookies Extractor to rozszerzenie Chrome opracowane przez HappyCoder, a jego główną funkcją jest „Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cookies Extractor
Pobierz pliki rozszerzeń Cookies Extractor 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
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
Podstawowe informacje o rozszerzeniu
Nazwa | Cookies Extractor |
ID | gdbmkehljhmfcjgbjcfaklnabeccddna |
Oficjalny URL | https://chromewebstore.google.com/detail/cookies-extractor/gdbmkehljhmfcjgbjcfaklnabeccddna |
Opis | Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. |
Rozmiar pliku | 64.83 KB |
Liczba instalacji | 635 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2023-05-23 |
Data Publikacji | 2023-05-23 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | HappyCoder |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookies Extractor", "description": "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.", "version": "1.0.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "cookies" ], "host_permissions": [ "*:\/\/*\/*" ], "action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |