Local Storage Transfer
Transfer local storage data key/value pairs from source to destination website on between tabs.
Qu'est-ce que Local Storage Transfer ?
Local Storage Transfer est une extension Chrome développée par anandaprabawa, et sa fonction principale est "Transfer local storage data key/value pairs from source to destination website on between tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Local Storage Transfer
Téléchargez les fichiers d'extension Local Storage Transfer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension aims to make software developer easier to develop website that needs local storage synchronization between tabs such as building micro-frontend website.
Informations de Base sur l'Extension
Nom | Local Storage Transfer |
ID | mdffmjljeplghdlkmnimliaogmohnfla |
URL Officiel | 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. |
Taille du Fichier | 16.84 KB |
Nombre d'Installations | 384 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2022-05-18 |
Date de Publication | 2022-05-17 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | anandaprabawa |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/anandaprabawa/local-storage-transfer |
URL de la Page d'Aide | https://github.com/anandaprabawa/local-storage-transfer |
Langues Prises en Charge | 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" } } |