update icons and increase popup size
BIN
extension/.DS_Store
vendored
Normal file
@@ -130,8 +130,8 @@ async function handleContentScriptMessage({type, params, host}) {
|
||||
browser.windows.create({
|
||||
url: `${browser.runtime.getURL('prompt.html')}?${qs.toString()}`,
|
||||
type: 'popup',
|
||||
width: 340,
|
||||
height: 360
|
||||
width: 600,
|
||||
height: 600
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
BIN
extension/icons/.DS_Store
vendored
Normal file
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
BIN
extension/icons/icon128.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
extension/icons/icon16.png
Normal file
|
After Width: | Height: | Size: 643 B |
BIN
extension/icons/icon32.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
extension/icons/icon48.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
@@ -1,14 +1,14 @@
|
||||
{
|
||||
"name": "Nostr Connect (formerly nos2x)",
|
||||
"name": "Nostr Connect",
|
||||
"description": "Nostr Signer Extension",
|
||||
"version": "2.2.0",
|
||||
"homepage_url": "https://github.com/fiatjaf/nos2x",
|
||||
"version": "0.1.0",
|
||||
"homepage_url": "https://github.com/reyamir/nostr-connect",
|
||||
"manifest_version": 3,
|
||||
"icons": {
|
||||
"16": "icons/16x16.png",
|
||||
"32": "icons/32x32.png",
|
||||
"48": "icons/48x48.png",
|
||||
"128": "icons/128x128.png"
|
||||
"16": "icons/icon16.png",
|
||||
"32": "icons/icon32.png",
|
||||
"48": "icons/icon48.png",
|
||||
"128": "icons/icon128.png"
|
||||
},
|
||||
"options_page": "options.html",
|
||||
"background": {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Nostr Connect (formerly nos2x)</title>
|
||||
<title>Nostr Connect</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="/build/style.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Nostr Connect (formerly nos2x)</title>
|
||||
<title>Nostr Connect</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="/build/style.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Nostr Connect (formerly nos2x)</title>
|
||||
<title>Nostr Connect</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="/build/style.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "./build.js; pnpm exec tailwindcss -i ./extension/style.css -o ./extension/build/style.css --watch",
|
||||
"build": "./build.js prod",
|
||||
"package": "./build.js prod; cd extension; zip -r archive *; cd ..; mv extension/archive.zip ./nos2x.zip"
|
||||
"build": "pnpm exec tailwindcss -i ./extension/style.css -o ./extension/build/style.css; ./build.js prod",
|
||||
"package": "./build.js prod; cd extension; zip -r archive *; cd ..; mv extension/archive.zip ./nostrconnect.zip"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tailwindcss": "^3.3.5"
|
||||
|
||||