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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sat_ และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookies Exporter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}