Local Storage Transfer
Transfer local storage data key/value pairs from source to destination website on between tabs.
What is Local Storage Transfer?
Local Storage Transfer is a Chrome extension developed by anandaprabawa, and its main feature is "Transfer local storage data key/value pairs from source to destination website on between tabs.".
Extension Screenshots
Download Local Storage Transfer Extension CRX File
Download Local Storage Transfer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension aims to make software developer easier to develop website that needs local storage synchronization between tabs such as building micro-frontend website.
Extension Basic Information
Name | Local Storage Transfer |
ID | mdffmjljeplghdlkmnimliaogmohnfla |
Official URL | https://chromewebstore.google.com/detail/local-storage-transfer/mdffmjljeplghdlkmnimliaogmohnfla |
Description | Transfer local storage data key/value pairs from source to destination website on between tabs. |
File Size | 16.84 KB |
Installation Count | 384 |
Current Version | 1.0.0 |
Last Updated | 2022-05-18 |
Publish Date | 2022-05-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | anandaprabawa |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/anandaprabawa/local-storage-transfer |
Help Page URL | https://github.com/anandaprabawa/local-storage-transfer |
Supported Languages | 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" } } |