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 là gì?

Cookies Exporter là một tiện ích mở rộng Chrome được phát triển bởi Sat_, và tính năng chính của nó là "Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cookies Exporter

Tải xuống các tệp mở rộng Cookies Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cookies Exporter Cookies Exporter
ID clbnnfdgcjlepbmmaehcegainakikopd
URL Chính Thức https://chromewebstore.google.com/detail/cookies-exporter/clbnnfdgcjlepbmmaehcegainakikopd
Mô tả Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers
Kích Thước Tệp 7.84 KB
Số Lần Cài Đặt 988
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2021-07-15
Ngày Phát Hành 2021-07-14
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Sat_
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}