This commit is contained in:
AmokDev 2025-03-18 03:58:06 +03:00
parent 426ba02f84
commit 85bec59be9
7 changed files with 47 additions and 0 deletions

BIN
icons/128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
icons/16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 B

BIN
icons/32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
icons/48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

19
manifest.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "HDRezka DiscordRPC",
"description": "Bla bla bla",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16":"icons/16.png",
"32":"icons/32.png",
"48":"icons/48.png",
"128":"icons/128.png"
},
"action": {
"default_popup":"popup.html"
},
"permissions": [],
"background": {
"service_worker": "service-worker.js"
}
}

28
popup.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title has-text-centered">
HDRezcord
</h1>
<div class="field">
<div class="control">
<input class="input is-rounded has-text-centered" type="text" placeholder="Input rezka domen here" />
</div>
</div>
<div class="field is-grouped has-text-centered">
<div class="control">
<button class="button is-link is-1 is-rounded">Save</button>
</div>
</div>
</div>
</section>
</body>
</html>

0
service-worker.js Normal file
View file