Cookies Extractor
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
Wat is Cookies Extractor?
Cookies Extractor is een Chrome-extensie ontwikkeld door HappyCoder, en de belangrijkste functie is "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.".
Extensie Screenshots
Download het CRX-bestand van de extensie Cookies Extractor
Download Cookies Extractor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. Basisinformatie over de Extensie
| Naam | |
| ID | gdbmkehljhmfcjgbjcfaklnabeccddna |
| Officiële URL | https://chromewebstore.google.com/detail/cookies-extractor/gdbmkehljhmfcjgbjcfaklnabeccddna |
| Beschrijving | Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. |
| Bestandsgrootte | 64.83 KB |
| Aantal Installaties | 635 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2023-05-23 |
| Publicatiedatum | 2023-05-23 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | HappyCoder |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |