ExportThisCookie

ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format

Co to jest ExportThisCookie?

ExportThisCookie to rozszerzenie Chrome opracowane przez https://exportthiscookie.com, a jego główną funkcją jest „ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ExportThisCookie

Pobierz pliki rozszerzeń ExportThisCookie 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

                        Export cookies in JSON format which can be directly imported in your code. 

Example: This comes handy while using python requests library.  This allows you export cookie in {"key":"value"} format.                    

Podstawowe informacje o rozszerzeniu

Nazwa ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
Oficjalny URL https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
Opis ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Rozmiar pliku 37.42 KB
Liczba instalacji 2,000
Aktualna Wersja Initial version
Ostatnia Aktualizacja 2023-04-16
Data Publikacji 2021-01-11
Ocena 4.75/5 Łącznie 4 Oceny
Deweloper https://exportthiscookie.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://exportthiscookie.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ExportThisCookie",
    "version": "0.0.0.2",
    "version_name": "Initial version",
    "description": "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format",
    "default_locale": "en",
    "icons": {
        "128": "\/cookie.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com; object-src 'self'",
    "browser_action": {
        "default_icon": "\/cookie.png",
        "default_title": "ExportThisCookie",
        "default_popup": "\/popup.html"
    }
}