Local Storage Transfer

Transfer local storage data key/value pairs from source to destination website on between tabs.

Local Storage Transfer क्या है?

Local Storage Transfer anandaprabawa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transfer local storage data key/value pairs from source to destination website on between tabs."।

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

screenshot

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

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

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

                        This extension aims to make software developer easier to develop website that needs local storage synchronization between tabs such as building micro-frontend website.                    

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

नाम Local Storage Transfer Local Storage Transfer
ID mdffmjljeplghdlkmnimliaogmohnfla
आधिकारिक URL https://chromewebstore.google.com/detail/local-storage-transfer/mdffmjljeplghdlkmnimliaogmohnfla
विवरण Transfer local storage data key/value pairs from source to destination website on between tabs.
फ़ाइल का आकार 16.84 KB
स्थापना संख्या 384
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2022-05-18
प्रकाशन तिथि 2022-05-17
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर anandaprabawa
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/anandaprabawa/local-storage-transfer
सहायता पृष्ठ URL https://github.com/anandaprabawa/local-storage-transfer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Local Storage Transfer",
    "description": "Transfer local storage data key\/value pairs from source to destination website on between tabs.",
    "version": "1.0.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    },
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    }
}