Cookies2JSON

Export cookies to a simple JSON file.

Cookies2JSON là gì?

Cookies2JSON là một tiện ích mở rộng Chrome được phát triển bởi sunnyclouds.apps, và tính năng chính của nó là "Export cookies to a simple JSON file.".

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

screenshot

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

Tải xuống các tệp mở rộng Cookies2JSON 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

                        Minimalistic extension that allows you to safely export all cookies in a browser tab as a simple JSON file.                    

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

Tên Cookies2JSON Cookies2JSON
ID ffbinkjibaannhnogomaebfmogppggcd
URL Chính Thức https://chromewebstore.google.com/detail/cookies2json/ffbinkjibaannhnogomaebfmogppggcd
Mô tả Export cookies to a simple JSON file.
Kích Thước Tệp 30.6 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-05-06
Ngày Phát Hành 2021-05-05
Nhà Phát Triển sunnyclouds.apps
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sunnyclouds-apps/Cookies2JSON
URL Trang Trợ Giúp https://github.com/sunnyclouds-apps/Cookies2JSON/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cookies2JSON",
    "description": "Export cookies to a simple JSON file.",
    "version": "1.0.0",
    "icons": {
        "16": "icons\/icon_16.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        },
        "default_title": "Cookies2JSON",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}