This commit is contained in:
Nicolai Ort 2021-08-14 13:51:34 +02:00
commit 531ebe8131
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
3 changed files with 67 additions and 0 deletions

41
index.html Normal file
View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LinkyLinky</title>
<link rel="stylesheet" href="https://tailwindui.com/css/components-v2.css">
<style>
body {
min-width: 300px;
}
</style>
</head>
<body>
<h1>LinkyLinky</h1>
<div class="p-8 flex items-center justify-center bg-white">
<div class="w-full max-w-xs mx-auto">
<div>
<label for="company_website" class="block text-sm font-medium text-gray-700">
Custom Shorturl
</label>
<div class="mt-1 flex rounded-md shadow-sm">
<span
class="inline-flex items-center px-3 rounded-l-md border border-r-0 border-gray-300 bg-gray-50 text-gray-500 sm:text-sm">
https://kauf.es/
</span>
<input type="text" name="company_website" id="company_website"
class="flex-1 min-w-0 block w-full px-3 py-2 rounded-none rounded-r-md focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm border-gray-300"
placeholder="custom url" />
</div>
</div>
</div>
</div>
</body>
</html>

13
manifest copy.json Normal file
View File

@ -0,0 +1,13 @@
{
"manifest_version": 2,
"name": "LinkyLinky",
"version": "0.0.1",
"description": "A simple url shortener",
"short_name": "LinkyLinky",
"permissions": [
"activeTab"
],
"browser_action": {
"default_popup": "index.html"
}
}

13
manifest.json Normal file
View File

@ -0,0 +1,13 @@
{
"manifest_version": 2,
"name": "LinkyLinky",
"version": "0.0.1",
"description": "A simple url shortener",
"short_name": "LinkyLinky",
"permissions": [
"activeTab"
],
"browser_action": {
"default_popup": "index.html"
}
}