Skip to content

Commit f60fd7c

Browse files
committed
feat: add initial implementation of IP fetching and display in popup
- Added background script for handling background tasks. - Implemented content script to inject UI with TailwindCSS styling. - Created a Svelte component for the popup interface to display public and server IPs. - Integrated IP fetching from external APIs for both IPv4 and IPv6 addresses. - Added functionality to copy IP addresses to clipboard with visual feedback. - Included TailwindCSS for styling the popup interface. - Added various PNG assets for icons and branding. - Configured WXT for Svelte and TailwindCSS integration.
1 parent fecbebd commit f60fd7c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+5079
-11813
lines changed

.eslintrc.js

Lines changed: 0 additions & 52 deletions
This file was deleted.

.gitignore

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
dist/
2-
node_modules/
3-
coverage/
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
.output
12+
stats.html
13+
stats-*.json
14+
.wxt
15+
web-ext.config.ts
16+
17+
# Editor directories and files
18+
.vscode/*
19+
!.vscode/extensions.json
20+
.idea
421
.DS_Store
5-
*.code-workspace
6-
*.env
7-
.yarn
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?

.prettierignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierrc

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
{
2-
"printWidth": 120,
3-
"singleQuote": true,
4-
"trailingComma": "es5"
2+
"arrowParens": "always",
3+
"bracketSameLine": false,
4+
"bracketSpacing": true,
5+
"printWidth": 140,
6+
"quoteProps": "as-needed",
7+
"semi": true,
8+
"singleQuote": false,
9+
"tabWidth": 4,
10+
"trailingComma": "none",
11+
"useTabs": true,
12+
"tailwindPreserveWhitespace": true,
13+
"plugins": [
14+
"prettier-plugin-svelte",
15+
"prettier-plugin-tailwindcss"
16+
17+
]
518
}

.stylelintrc.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"svelte.svelte-vscode",
4+
"bradlc.vscode-tailwindcss",
5+
"esbenp.prettier-vscode"
6+
]
7+
}

.yarnrc.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)