Simple curl compatible cookies extractor
Extract cookies into a curl compatible string
Vad är Simple curl compatible cookies extractor?
Simple curl compatible cookies extractor är en Chrome-tillägg utvecklad av jmadar, och dess huvudfunktion är "Extract cookies into a curl compatible string".
Tilläggsskärmbilder
Ladda ner Simple curl compatible cookies extractor-förlängningens CRX-fil
Ladda ner Simple curl compatible cookies extractor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A simple cookie editor that extracts cookies in a curl-compatible way, so you can extract cookies from a browser and paste them into the curl command line utility directly. Grundläggande Information om Tillägg
| Namn | |
| ID | hacpnjlfmfaiedcejmognhhffdpooafe |
| Officiell webbadress | https://chromewebstore.google.com/detail/simple-curl-compatible-co/hacpnjlfmfaiedcejmognhhffdpooafe |
| Beskrivning | Extract cookies into a curl compatible string |
| Filstorlek | 16.36 KB |
| Antal Installationer | 525 |
| Aktuell Version | 2.0 |
| Senast Uppdaterad | 2021-09-23 |
| Publiceringsdatum | 2021-01-27 |
| Utvecklare | jmadar |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Simple curl compatible cookies extractor",
"version": "2.0",
"description": "Extract cookies into a curl compatible string",
"permissions": [
"cookies",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "images\/cookie-16.png",
"32": "images\/cookie-32.png",
"128": "images\/cookie-128.png"
},
"incognito": "split",
"browser_action": {
"default_popup": "popup.html"
},
"manifest_version": 2
} | |