Skip to content

Commit 6b6c9ec

Browse files
committed
Update readme, resize window
1 parent c197a31 commit 6b6c9ec

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,15 @@ Features:
1111
- Anonymous.
1212
- Runs in the browser
1313
- Keys created in memory.
14+
15+
### Chrome packaged app
16+
17+
Here's how you can run Carbon Wallet as a Chrome packaged app
18+
without having to go through the Chrome Web store:
19+
20+
1) Clone the code
21+
2) Go to "Menu > Tools > Extensions" in Chrome
22+
3) Make sure "Developer mode" is checked at the top
23+
4) Click "Load unpacked extension"
24+
5) Navigate to the carbonwallet.github.io directory and click OK
25+
6) Carbon Wallet will now appear as an option in your App list in Chrome

js/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
chrome.app.runtime.onLaunched.addListener(function() {
22
chrome.app.window.create('index.html', {
33
width: 1000,
4-
height: 600
4+
height: 620
55
});
66
});

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Carbon Wallet",
33
"description": "JavaScript-based offline bitcoin wallet",
4-
"version": "0.1",
4+
"version": "0.1.1",
55
"app": {
66
"background": {
77
"scripts": ["js/background.js"]

0 commit comments

Comments
 (0)