CookieSync: syncs cookies to localhost

Copies cookies to localhost

CookieSync: syncs cookies to localhost क्या है?

CookieSync: syncs cookies to localhost roel.noten द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies cookies to localhost"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CookieSync: syncs cookies to localhost एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम CookieSync: syncs cookies to localhost CookieSync: syncs cookies to localhost
ID gcmbgjbdleaopgcnhfijjmdkdkjhggdo
आधिकारिक URL https://chromewebstore.google.com/detail/cookiesync-syncs-cookies/gcmbgjbdleaopgcnhfijjmdkdkjhggdo
विवरण Copies cookies to localhost
फ़ाइल का आकार 122 KB
स्थापना संख्या 265
वर्तमान संस्करण 1.4
अंतिम अपडेट 2021-11-13
प्रकाशन तिथि 2021-11-12
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर roel.noten
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/roelnoten/cookiesync
सहायता पृष्ठ URL https://github.com/roelnoten/cookiesync
समर्थित भाषाएँ 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"
        ]
    }
}