moved popup to src folder

This commit is contained in:
Lauchmelder 2022-03-30 16:59:51 +02:00
parent fc43e55604
commit ddd8cd2bf9
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
*.xcf *.xcf
*.zip
.vscode/ .vscode/

View file

@ -9,7 +9,7 @@
}, },
"manifest_version": 3, "manifest_version": 3,
"action": { "action": {
"default_popup": "popup.html" "default_popup": "src/popup.html"
}, },
"content_scripts": [ "content_scripts": [
{ {

View file

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<link rel="stylesheet" href="src/styles.css"> <link rel="stylesheet" href="styles.css">
</head> </head>
<body> <body>
<header> <header>
@ -57,6 +57,6 @@
<a id="source" target="_blank" href="https://github.com/Lauchmelder23/FuriKani">Source Code</a> <a id="source" target="_blank" href="https://github.com/Lauchmelder23/FuriKani">Source Code</a>
</footer> </footer>
<script src="src/popup.js"></script> <script src="popup.js"></script>
</body> </body>
</html> </html>