Skip to content

Commit

Permalink
Extension configuration add
Browse files Browse the repository at this point in the history
  • Loading branch information
x64Bits committed Mar 7, 2021
1 parent ef2a16c commit d0321e6
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
/.pnp
.pnp.js

/out.crx

# testing
/coverage

Expand Down
Empty file added next.config.js
Empty file.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
"start": "next start",
"export": "next build && next export"
},
"dependencies": {
"next": "10.0.8",
Expand Down
Binary file added public/extension/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/extension/icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/extension/icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"manifest_version": 3,
"name": "PayPal Fee Calculator",
"version": "0.1.0",

"action": {
"default_icon": {
"16": "extension/icon-16.png",
"48": "extension/icon-48.png",
"128": "extension/icon-128.png"
},
"default_title": "Open PayPal Calculator",
"default_popup": "index.html"
},
"description": "A most simple PayPal Fee calculator",

"author": "Ignacio Zsabo"
}
2 changes: 2 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ body {

.main-container {
font-family: 'Roboto', 'Helvetica Neue', Helvetica, sans-serif, Arial !important;
min-width: 380px;
min-height: 430px;
}

a {
Expand Down

1 comment on commit d0321e6

@vercel
Copy link

@vercel vercel bot commented on d0321e6 Mar 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.