update icons and increase popup size

This commit is contained in:
reya
2023-11-21 10:04:38 +07:00
parent bad147b2d7
commit 9f8df79be3
17 changed files with 14 additions and 14 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
extension/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -130,8 +130,8 @@ async function handleContentScriptMessage({type, params, host}) {
browser.windows.create({ browser.windows.create({
url: `${browser.runtime.getURL('prompt.html')}?${qs.toString()}`, url: `${browser.runtime.getURL('prompt.html')}?${qs.toString()}`,
type: 'popup', type: 'popup',
width: 340, width: 600,
height: 360 height: 600
}) })
}) })

BIN
extension/icons/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

BIN
extension/icons/icon128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
extension/icons/icon16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 643 B

BIN
extension/icons/icon32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
extension/icons/icon48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -1,14 +1,14 @@
{ {
"name": "Nostr Connect (formerly nos2x)", "name": "Nostr Connect",
"description": "Nostr Signer Extension", "description": "Nostr Signer Extension",
"version": "2.2.0", "version": "0.1.0",
"homepage_url": "https://github.com/fiatjaf/nos2x", "homepage_url": "https://github.com/reyamir/nostr-connect",
"manifest_version": 3, "manifest_version": 3,
"icons": { "icons": {
"16": "icons/16x16.png", "16": "icons/icon16.png",
"32": "icons/32x32.png", "32": "icons/icon32.png",
"48": "icons/48x48.png", "48": "icons/icon48.png",
"128": "icons/128x128.png" "128": "icons/icon128.png"
}, },
"options_page": "options.html", "options_page": "options.html",
"background": { "background": {

View File

@@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<meta charset="utf-8" /> <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" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/build/style.css" rel="stylesheet" /> <link href="/build/style.css" rel="stylesheet" />
</head> </head>

View File

@@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<meta charset="utf-8" /> <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" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/build/style.css" rel="stylesheet" /> <link href="/build/style.css" rel="stylesheet" />
</head> </head>

View File

@@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<meta charset="utf-8" /> <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" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/build/style.css" rel="stylesheet" /> <link href="/build/style.css" rel="stylesheet" />
</head> </head>

View File

@@ -22,8 +22,8 @@
}, },
"scripts": { "scripts": {
"dev": "./build.js; pnpm exec tailwindcss -i ./extension/style.css -o ./extension/build/style.css --watch", "dev": "./build.js; pnpm exec tailwindcss -i ./extension/style.css -o ./extension/build/style.css --watch",
"build": "./build.js prod", "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 ./nos2x.zip" "package": "./build.js prod; cd extension; zip -r archive *; cd ..; mv extension/archive.zip ./nostrconnect.zip"
}, },
"devDependencies": { "devDependencies": {
"tailwindcss": "^3.3.5" "tailwindcss": "^3.3.5"