CookieSync: syncs cookies to localhost

Copies cookies to localhost

CookieSync: syncs cookies to localhost là gì?

CookieSync: syncs cookies to localhost là một tiện ích mở rộng Chrome được phát triển bởi roel.noten, và tính năng chính của nó là "Copies cookies to localhost".

Ả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 CookieSync: syncs cookies to localhost

Tải xuống các tệp mở rộng CookieSync: syncs cookies to localhost 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 is an add-on which copies cookies to localhost.

This addon monitors all incoming cookies and all cookies matching a user defined name regex will be copied to the http://localhost domain.

It's primary here for developers that have code running on their localhost which connects to other services and need access to their cookies. The typical use case is a third-party login flow. In production the developer's code wil run on the same domain as the other services and have access to the cookies they set.
But when code is running on localhost (during development), those cookies are not accessible in the browser. This add on makes those cookies available on localhost, so available to the developer's local code.                    

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

Tên CookieSync: syncs cookies to localhost CookieSync: syncs cookies to localhost
ID gcmbgjbdleaopgcnhfijjmdkdkjhggdo
URL Chính Thức https://chromewebstore.google.com/detail/cookiesync-syncs-cookies/gcmbgjbdleaopgcnhfijjmdkdkjhggdo
Mô tả Copies cookies to localhost
Kích Thước Tệp 122 KB
Số Lần Cài Đặt 265
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2021-11-13
Ngày Phát Hành 2021-11-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển roel.noten
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/roelnoten/cookiesync
URL Trang Trợ Giúp https://github.com/roelnoten/cookiesync
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CookieSync: syncs cookies to localhost",
    "version": "1.4",
    "description": "Copies cookies to localhost",
    "homepage_url": "https:\/\/github.com\/roelnoten\/cookiesync",
    "icons": {
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "cookies"
    ],
    "browser_action": {
        "default_icon": "icon38.png",
        "default_title": "Copies cookies to localhost",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}