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 |
公式URL | 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 |
Eメール | [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" } } |