-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New wasm project * Change project * Fix script and project * Add popup * Add account form * Update popup * Change script location * button click fixed * Fetch * [WIP] Integrate with state utility server * Added styling with tailwind * Update border * Nits * Add Makefile * Fetch server * Beautify, fix balance * Add gecko id and build make rule --------- Co-authored-by: Pablo Deymonnaz <[email protected]> Co-authored-by: gabrielbosio <[email protected]>
- Loading branch information
1 parent
353c485
commit e9c3a3b
Showing
12 changed files
with
7,413 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
web-ext-artifacts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
firefox: | ||
npm run start:firefox | ||
|
||
tailwind: | ||
npx tailwindcss -i ./popup/popup.css -o ./popup/output.css --watch | ||
|
||
build: | ||
web-ext build |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Mina account state utility", | ||
"version": "0.0.1", | ||
"description": "Check your Mina account via the Mina-Ethereum ZK bridge", | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"<all_urls>" | ||
], | ||
"js": [ | ||
"background.js" | ||
] | ||
} | ||
], | ||
"browser_action": { | ||
"default_title": "Mina account util", | ||
"default_popup": "popup/popup.html" | ||
}, | ||
"permissions": [ | ||
"*://*/*" | ||
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "42.0" | ||
} | ||
} | ||
} |
Oops, something went wrong.