Devbox
A UI for local storage
Devboxとは何ですか?
DevboxはMehul Lakhanpalによって開発されたChromeの拡張機能で、その主な機能は「A UI for local storage」です。
拡張機能のスクリーンショット
Devbox拡張機能のCRXファイルをダウンロード
Devbox拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A chrome extension which shows data from local storage for easy viewing & copy-paste. While development, there is a need to get fields from local storage (ex., userId, token, etc). This chrome extension helps create entries that read data from storage and show it in a small window at the bottom left corner of the development window. Features: - Create an entry by entering a local storage key name, path (if the key’s value is an object) & a label for reference. - Clicking value copies the content to the clipboard.
拡張機能の基本情報
名前 | Devbox |
ID | moifkpmfincoglpljkonmgnfaeonlgmo |
公式URL | https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo |
説明 | A UI for local storage |
ファイルサイズ | 2.16 MB |
インストール数 | 166 |
現在のバージョン | 1.3 |
最終更新日 | 2022-07-13 |
公開日 | 2022-06-10 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | Mehul Lakhanpal |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devbox", "version": "1.3", "description": "A UI for local storage", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/localhost\/*" ], "js": [ ".\/build\/script.js" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" } } |