Local Storage Transfer

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

Local Storage Transfer là gì?

Local Storage Transfer là một tiện ích mở rộng Chrome được phát triển bởi anandaprabawa, và tính năng chính của nó là "Transfer local storage data key/value pairs from source to destination website on between tabs.".

Ả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 Local Storage Transfer

Tải xuống các tệp mở rộng Local Storage Transfer 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 extension aims to make software developer easier to develop website that needs local storage synchronization between tabs such as building micro-frontend website.                    

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

Tên Local Storage Transfer Local Storage Transfer
ID mdffmjljeplghdlkmnimliaogmohnfla
URL Chính Thức https://chromewebstore.google.com/detail/local-storage-transfer/mdffmjljeplghdlkmnimliaogmohnfla
Mô tả Transfer local storage data key/value pairs from source to destination website on between tabs.
Kích Thước Tệp 16.84 KB
Số Lần Cài Đặt 384
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-05-18
Ngày Phát Hành 2022-05-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển anandaprabawa
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/anandaprabawa/local-storage-transfer
URL Trang Trợ Giúp https://github.com/anandaprabawa/local-storage-transfer
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}