Colada DevTools
Time-travel debugging for Pinia, Vue's official state management library.
What is Colada DevTools?
Colada DevTools is a Chrome extension developed by teamcolada, and its main feature is "Time-travel debugging for Pinia, Vue's official state management library.".
Extension Screenshots
Download Colada DevTools Extension CRX File
Download Colada DevTools 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
Colada is a developer tool that enables time-travel debugging for Vue applications that use Pinia stores for state management.
Extension Basic Information
Name | Colada DevTools |
ID | icdbaobbeemmhlmjolbkedcneadkfpdl |
Official URL | https://chromewebstore.google.com/detail/colada-devtools/icdbaobbeemmhlmjolbkedcneadkfpdl |
Description | Time-travel debugging for Pinia, Vue's official state management library. |
File Size | 118 KB |
Installation Count | 2,167 |
Current Version | 0.1.2 |
Last Updated | 2022-09-24 |
Publish Date | 2022-09-24 |
Rating | 5.00/5 Total 4 Ratings |
Developer | teamcolada |
[email protected] | |
Payment Type | free |
Extension Website | https://colada.dev/ |
Help Page URL | https://github.com/oslabs-beta/colada/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Colada DevTools", "description": "Time-travel debugging for Pinia, Vue's official state management library.", "version": "0.1.2", "manifest_version": 3, "icons": { "16": ".\/assets\/icon-16.png", "48": ".\/assets\/icon-48.png", "128": ".\/assets\/icon-128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "devtools_page": "devtools-background.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ ".\/content-script.js" ] } ] } |