Implement a starter release

This commit is contained in:
TropiiDev 2025-03-05 13:30:32 -05:00
commit 82600af82b
4 changed files with 20 additions and 0 deletions

4
CHANGELOG.md Normal file
View File

@ -0,0 +1,4 @@
## Changelog
## 0.0.1
- Alpha release.
- Added the starter functionality.

1
README.md Normal file
View File

@ -0,0 +1 @@
## TBD

5
main.html Normal file
View File

@ -0,0 +1,5 @@
<html>
<body>
<h1>Copy URL</h1>
</body>
</html>

10
manifest.json Normal file
View File

@ -0,0 +1,10 @@
{
"name": "Copy URL",
"description": "Copy the URL of the current tab",
"version": "0.0.1",
"manifest_version": 3,
"action": {
"default_popup": "main.html",
"default_icon": "copy.png"
}
}