Copyright and license

This commit is contained in:
Olaf
2026-08-25 08:39:46 +02:00
parent 1cba4e8649
commit d896d3d068
51 changed files with 343 additions and 0 deletions
+21
View File
@@ -1,3 +1,6 @@
/* Copyright © 2026 Olaf Kolkman */
/* SPDX-License-Identifier: GPL-3.0-or-later */
body {
margin: 0;
font-family: sans-serif;
@@ -97,3 +100,21 @@ button {
.hidden {
display: none;
}
.extension-footer {
margin: 16px auto;
color: #7f849c;
font-size: 0.68rem;
text-align: center;
}
.extension-footer a {
color: inherit;
text-decoration: underline;
}
.extension-footer a:hover,
.extension-footer a:focus-visible,
.extension-footer a:active {
color: #b4befe;
}
+3
View File
@@ -1,4 +1,6 @@
<!DOCTYPE html>
<!-- Copyright © 2026 Olaf Kolkman -->
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->
<html lang="en">
<head>
<meta charset="utf-8" />
@@ -36,6 +38,7 @@
<button type="submit">Save and log in</button>
</form>
</main>
<footer class="extension-footer">Copyright © 2026 Olaf Kolkman · <a href="https://git.kolkman.org/olaf/Link-Log">Repository</a></footer>
<script src="options.js"></script>
</body>
+3
View File
@@ -1,3 +1,6 @@
// Copyright © 2026 Olaf Kolkman
// SPDX-License-Identifier: GPL-3.0-or-later
const DEFAULT_BACKEND = 'http://localhost:8000';
const statusEl = document.getElementById('status');
+21
View File
@@ -1,3 +1,6 @@
/* Copyright © 2026 Olaf Kolkman */
/* SPDX-License-Identifier: GPL-3.0-or-later */
body {
width: 360px;
margin: 0;
@@ -149,3 +152,21 @@ button {
.hidden {
display: none;
}
.extension-footer {
margin-top: 16px;
color: #7f849c;
font-size: 0.68rem;
text-align: center;
}
.extension-footer a {
color: inherit;
text-decoration: underline;
}
.extension-footer a:hover,
.extension-footer a:focus-visible,
.extension-footer a:active {
color: #cba6f7;
}
+3
View File
@@ -1,4 +1,6 @@
<!DOCTYPE html>
<!-- Copyright © 2026 Olaf Kolkman -->
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->
<html lang="en">
<head>
<meta charset="utf-8" />
@@ -42,6 +44,7 @@
</div>
</form>
</main>
<footer class="extension-footer">Copyright © 2026 Olaf Kolkman · <a href="https://git.kolkman.org/olaf/Link-Log">Repository</a></footer>
<script src="popup.js"></script>
</body>
+3
View File
@@ -1,3 +1,6 @@
// Copyright © 2026 Olaf Kolkman
// SPDX-License-Identifier: GPL-3.0-or-later
const statusEl = document.getElementById('status');
const form = document.getElementById('link-form');
const titleInput = document.getElementById('title');