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_
Eメール [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"
        ]
    }
}