Local Storage Transfer
Transfer local storage data key/value pairs from source to destination website on between tabs.
Cos'è Local Storage Transfer?
Local Storage Transfer è un'estensione di Chrome sviluppata da anandaprabawa, e la sua funzione principale è "Transfer local storage data key/value pairs from source to destination website on between tabs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Local Storage Transfer
Scarica i file di estensione Local Storage Transfer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension aims to make software developer easier to develop website that needs local storage synchronization between tabs such as building micro-frontend website.
Informazioni di Base sull'Estensione
Nome | Local Storage Transfer |
ID | mdffmjljeplghdlkmnimliaogmohnfla |
URL Ufficiale | https://chromewebstore.google.com/detail/local-storage-transfer/mdffmjljeplghdlkmnimliaogmohnfla |
Descrizione | Transfer local storage data key/value pairs from source to destination website on between tabs. |
Dimensione del File | 16.84 KB |
Conteggio Installazioni | 384 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2022-05-18 |
Data di Pubblicazione | 2022-05-17 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | anandaprabawa |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/anandaprabawa/local-storage-transfer |
URL della Pagina di Aiuto | https://github.com/anandaprabawa/local-storage-transfer |
Lingue Supportate | 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" } } |