Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7cd4771fbc | |||
|
f389f88825
|
|||
|
595695fe4f
|
|||
| bada398877 | |||
|
32196bb8f2
|
15
CHANGELOG.md
15
CHANGELOG.md
@@ -2,10 +2,25 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
||||
|
||||
#### [0.2.0](https://git.odit.services/kauft.es/linkylinky-chrome/compare/0.1.2...0.2.0)
|
||||
|
||||
- Extension users can now disable bot preview [`f389f88`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/f389f88825958beb3d74cb0d50a118435b40652e)
|
||||
- Added "docs" images [`595695f`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/595695fe4f4cb696a47d0e8177b51f4ded15ed5b)
|
||||
|
||||
#### [0.1.2](https://git.odit.services/kauft.es/linkylinky-chrome/compare/0.1.1...0.1.2)
|
||||
|
||||
> 21 August 2021
|
||||
|
||||
- Better then resolution [`32196bb`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/32196bb8f2f64dc83ef4aeeb211c26a917b7bee2)
|
||||
- 🚀RELEASE 0.1.2 [`bada398`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/bada398877d99d380394eac4da8ee0b30c609022)
|
||||
|
||||
#### [0.1.1](https://git.odit.services/kauft.es/linkylinky-chrome/compare/0.1.0...0.1.1)
|
||||
|
||||
> 17 August 2021
|
||||
|
||||
- Generated yarn lockfile [`2cfa268`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/2cfa268d3f7aba25ea1050bc3b9140bc9b241dda)
|
||||
- Updated readme [`3ffdac3`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/3ffdac301a836aba35a0464b5b776a367dc5cfb9)
|
||||
- 🚀RELEASE 0.1.1 [`b7232ed`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/b7232edc5000df383bff03480b21102ed5edc91b)
|
||||
- Now allowing lockfiles [`c7ed917`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/c7ed917d889086d75e8afc3e931cbaf4bbc8cffa)
|
||||
- Added cleanup script [`b82a05a`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/b82a05a1dffbe76a272d6b6f130e81332f0bb6c1)
|
||||
- finished dev script [`b4d17cb`](https://git.odit.services/kauft.es/linkylinky-chrome/commit/b4d17cbd96fc9dc817cd9e445cbdb7d880d8d61f)
|
||||
|
||||
@@ -4,8 +4,12 @@
|
||||
<h3 align="center">A simple, privacy focused urls shortner</h3>
|
||||
</p>
|
||||
|
||||
<!-- ## 👀 Preview
|
||||
TODO: -->
|
||||
## 👀 Preview
|
||||
<img height="300" src="./docs/fullpage_opened.webp">
|
||||
<img height="300" src="./docs/fullpage_created.webp">
|
||||
<img height="150" src="./docs/extension_opened.webp">
|
||||
<img height="150" src="./docs/extension_created.webp">
|
||||
<img height="400" src="./docs/fullpage_copy.webp">
|
||||
|
||||
## ⚡ Installation
|
||||
- Download the `linkylinky-chrome.zip` from [the lastest release](https://git.odit.services/kauft.es/linkylinky-chrome/releases)
|
||||
|
||||
BIN
docs/extension_created.webp
Normal file
BIN
docs/extension_created.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.0 KiB |
BIN
docs/extension_opened.webp
Normal file
BIN
docs/extension_opened.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
BIN
docs/fullpage_closed.webp
Normal file
BIN
docs/fullpage_closed.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
BIN
docs/fullpage_copy.webp
Normal file
BIN
docs/fullpage_copy.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
BIN
docs/fullpage_created.webp
Normal file
BIN
docs/fullpage_created.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
BIN
docs/fullpage_opened.webp
Normal file
BIN
docs/fullpage_opened.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 36 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@odit/linkylinky-chrome",
|
||||
"version": "0.1.1",
|
||||
"version": "0.2.0",
|
||||
"license": "MIT",
|
||||
"private": false,
|
||||
"author": {
|
||||
|
||||
@@ -13,6 +13,19 @@
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<style>
|
||||
/* CHECKBOX TOGGLE SWITCH */
|
||||
/* @apply rules for documentation, these do not work as inline style */
|
||||
.toggle-checkbox:checked {
|
||||
@apply: right-0 border-green-400;
|
||||
right: 0;
|
||||
border-color: #68D391;
|
||||
}
|
||||
.toggle-checkbox:checked + .toggle-label {
|
||||
@apply: bg-green-400;
|
||||
background-color: #68D391;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<div class="p-4 flex items-center justify-center bg-white">
|
||||
@@ -69,6 +82,15 @@
|
||||
placeholder="custom url" />
|
||||
</div>
|
||||
</div>
|
||||
<div id="bot_container">
|
||||
<div class="mt-1 flex rounded-md shadow-sm">
|
||||
<label for="toggle" class="text-base text-gray-700 pr-2">Disable Preview:</label>
|
||||
<div class="relative inline-block w-10 mr-2 align-middle select-none transition duration-200 ease-in">
|
||||
<input type="checkbox" name="toggle" id="bot_toggle" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/>
|
||||
<label for="toggle" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hidden" name="shorturl_container" id="shorturl_container">
|
||||
<div class="inline-flex w-full" id="shorturl_copy" data-clipboard-target="#shorturl">
|
||||
<p name="shorturl" id="shorturl" class:bg-green-200={copied}
|
||||
|
||||
11
src/main.js
11
src/main.js
@@ -25,7 +25,8 @@ document.getElementById("create").onclick = createUrl;
|
||||
function createUrl() {
|
||||
let shorturl = {
|
||||
target: document.getElementById("target").value,
|
||||
shortcode: document.getElementById("shortcode").value
|
||||
shortcode: document.getElementById("shortcode").value,
|
||||
no_preview: document.getElementById("bot_toggle").value
|
||||
};
|
||||
|
||||
if (shorturl.shortcode == "" | !shorturl.shortcode) {
|
||||
@@ -44,17 +45,17 @@ function createUrl() {
|
||||
handleError(res);
|
||||
}
|
||||
else {
|
||||
res.json()
|
||||
}
|
||||
})
|
||||
.then(res => {
|
||||
res.json().then(res => {
|
||||
document.getElementById("shorturl").innerText = res.url;
|
||||
document.getElementById("shorturl_container").className = "";
|
||||
document.getElementById("target_container").className = "hidden";
|
||||
document.getElementById("shortcode_container").className = "hidden";
|
||||
document.getElementById("bot_container").classList.add("hidden");
|
||||
document.getElementById("create").classList.add("hidden");
|
||||
document.getElementById("reset").classList.remove("hidden");
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user