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
官方網址 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"
        ]
    }
}