Cookies2JSON

Export cookies to a simple JSON file.

Was ist Cookies2JSON?

Cookies2JSON ist eine Chrome-Erweiterung, die von sunnyclouds.apps entwickelt wurde, und ihr Hauptmerkmal ist "Export cookies to a simple JSON file.".

Erweiterungsscreenshots

screenshot

Cookies2JSON-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cookies2JSON-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

                        Minimalistic extension that allows you to safely export all cookies in a browser tab as a simple JSON file.                    

Grundlegende Informationen zur Erweiterung

Name Cookies2JSON Cookies2JSON
ID ffbinkjibaannhnogomaebfmogppggcd
Offizielle URL https://chromewebstore.google.com/detail/cookies2json/ffbinkjibaannhnogomaebfmogppggcd
Beschreibung Export cookies to a simple JSON file.
Dateigröße 30.6 KB
Installationsanzahl 93
Aktuelle Version 1.0.0
Letztes Update 2021-05-06
Veröffentlichungsdatum 2021-05-05
Entwickler sunnyclouds.apps
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sunnyclouds-apps/Cookies2JSON
Hilfeseite URL https://github.com/sunnyclouds-apps/Cookies2JSON/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cookies2JSON",
    "description": "Export cookies to a simple JSON file.",
    "version": "1.0.0",
    "icons": {
        "16": "icons\/icon_16.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        },
        "default_title": "Cookies2JSON",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}