ExportThisCookie

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

Vad är ExportThisCookie?

ExportThisCookie är en Chrome-tillägg utvecklad av https://exportthiscookie.com, och dess huvudfunktion är "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner ExportThisCookie-förlängningens CRX-fil

Ladda ner ExportThisCookie-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

                        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.                    

Grundläggande Information om Tillägg

Namn ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
Officiell webbadress https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
Beskrivning ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Filstorlek 37.42 KB
Antal Installationer 2,000
Aktuell Version Initial version
Senast Uppdaterad 2023-04-16
Publiceringsdatum 2021-01-11
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare https://exportthiscookie.com
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://exportthiscookie.com/privacy
Stödda Språk 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"
    }
}