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({
|
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
|
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",
|
"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": {
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||