Cookies Exporter

Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers

什么是Cookies Exporter?

Cookies Exporter是由Sat_开发的Chrome扩展程序,该扩展的主要功能是“Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers”。

扩展截图

screenshot
screenshot

下载Cookies Exporter扩展crx文件

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

扩展使用说明

                        This extension will help you debug your application, you can decide when and where to send your cookies. 

Usage:
Click the extension icon, you will be asked two questions, the first is which domain's cookies you want to export and the second is where you want to send them. 

At this point your browser will send a XHR request to the endpoint you have chosen with all your cookies in a Json Object.
For your convenience the user agent is also added to the Json object                    

扩展基本信息

名称 Cookies Exporter Cookies Exporter
ID clbnnfdgcjlepbmmaehcegainakikopd
官方URL https://chromewebstore.google.com/detail/cookies-exporter/clbnnfdgcjlepbmmaehcegainakikopd
简介 Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers
文件大小 7.84 KB
安装次数 988
当前版本 0.0.0.1
更新时间 2021-07-15
上架时间 2021-07-14
评分 2.33/5 共3次评分
开发者 Sat_
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookies Exporter",
    "manifest_version": 2,
    "version": "0.0.0.1",
    "description": "Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers",
    "permissions": [
        "cookies",
        ""
    ],
    "browser_action": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    }
}