Simple curl compatible cookies extractor

Extract cookies into a curl compatible string

Was ist Simple curl compatible cookies extractor?

Simple curl compatible cookies extractor ist eine Chrome-Erweiterung, die von jmadar entwickelt wurde, und ihr Hauptmerkmal ist "Extract cookies into a curl compatible string".

Erweiterungsscreenshots

screenshot

Simple curl compatible cookies extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple curl compatible cookies extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Simple curl compatible cookies extractor Simple curl compatible cookies extractor
ID hacpnjlfmfaiedcejmognhhffdpooafe
Offizielle URL https://chromewebstore.google.com/detail/simple-curl-compatible-co/hacpnjlfmfaiedcejmognhhffdpooafe
Beschreibung Extract cookies into a curl compatible string
Dateigröße 16.36 KB
Installationsanzahl 525
Aktuelle Version 2.0
Letztes Update 2021-09-23
Veröffentlichungsdatum 2021-01-27
Entwickler jmadar
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}