Local Storage Transfer

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

Local Storage Transferคืออะไร?

Local Storage Transfer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย anandaprabawa และคุณลักษณะหลักของมันคือ "Transfer local storage data key/value pairs from source to destination website on between tabs."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Local Storage Transfer

ดาวน์โหลดไฟล์ส่วนขยาย Local Storage Transfer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}