Skip to content

Commit

Permalink
updated: extension V2
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiIgna committed Oct 9, 2024
1 parent d1b04c0 commit a1e539c
Show file tree
Hide file tree
Showing 29 changed files with 4,001 additions and 16,338 deletions.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Domain Info</title>
</head>
<body class="dark:bg-gray-950">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
22 changes: 22 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"manifest_version": 3,
"name": "Domain Info",
"description": "View detailed info for any domain name: registration status & dates, WHOIS, DNS records, Name Servers, and more",
"version": "2.3.1",
"icons": {
"16": "icons/icon_48.png",
"32": "icons/icon_48.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},

"permissions": ["activeTab", "declarativeContent", "storage"],
"action": {
"default_title": "Domain Info",
"default_popup": "index.html"
},
"background": {
"service_worker": "src/background.js",
"type": "module"
}
}
Loading

0 comments on commit a1e539c

Please sign in to comment.