ExportThisCookie

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

什么是ExportThisCookie?

ExportThisCookie是由https://exportthiscookie.com开发的Chrome扩展程序,该扩展的主要功能是“ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format”。

扩展截图

screenshot
screenshot

下载ExportThisCookie扩展crx文件

下载ExportThisCookie扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
官方URL https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
简介 ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
文件大小 37.42 KB
安装次数 2,000
当前版本 Initial version
更新时间 2023-04-16
上架时间 2021-01-11
评分 4.75/5 共4次评分
开发者 https://exportthiscookie.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://exportthiscookie.com/privacy
支持的语言 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"
    }
}