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開發的Chrome擴展程式,該擴展的主要功能是“Transfer local storage data key/value pairs from source to destination website on between tabs.”。
擴展截圖
下載Local Storage Transfer擴展crx文件
下載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 |
ID | mdffmjljeplghdlkmnimliaogmohnfla |
官方網址 | 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" } } |