Skip to content

Commit f6d8514

Browse files
committed
Deploy abhijithvijayan/kuttUrl-Chrome-extension to github.com/abhijithvijayan/kuttUrl-Chrome-extension.git:extension
1 parent a16d802 commit f6d8514

File tree

3 files changed

+3
-100
lines changed

3 files changed

+3
-100
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuttUrl - Shorten URLs",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "URL Shortener",
55
"background": {
66
"scripts": ["js/background.js"],

options.html

Lines changed: 1 addition & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width,initial-scale=1">
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>Options : kuttUrl</title>
8-
<link rel="stylesheet" href="css/options.css">
9-
</head>
10-
<body>
11-
<section id="options">
12-
<div class="container options__content--holder">
13-
<div class="head__content--holder text-center">
14-
<img class="head__content--logo" src="assets/logo.png">
15-
<h2 class="head__content--title">kuttUrl</h2>
16-
</div>
17-
<div class="form__content--holder">
18-
<form class="form__content">
19-
<label class="api__key--label">API Key:</label>
20-
<input class="api__key--holder" id="api__key--value" type="text" spellcheck="false">
21-
<br>
22-
<label class="password--label">Set Password
23-
<span class="password__label--optional">(Optional):
24-
<span class="password__label--tooltiptext text-center">Set Password for the Shortened URLs.<br> (20 Char. Max)
25-
</span>
26-
</span>
27-
</label>
28-
<input class="password--holder" id="password--value" type="password" maxlength="20">
29-
<div class="password__check--holder">
30-
<input type="checkbox" id="password__view--checkbox">
31-
<span class="password__view--title">Show Password</span>
32-
</div>
33-
<br>
34-
<button class="button__submit" id="button__submit" type="button">Save</button>
35-
<label class="saved__alert v-none">Saved!!</label>
36-
</form>
37-
</div>
38-
<div class="footer__text--holder text-center mt-3">
39-
Made with ❤️ on <a class="github__repo--link" href="https://github.com/abhijithvijayan/kuttUrl-Chrome-extension" target="_blank">GitHub</a>
40-
</div>
41-
</div>
42-
</section>
43-
44-
<script src="js/options.js"></script>
45-
</body>
46-
</html>
1+
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Options : kuttUrl</title><link rel="stylesheet" href="css/options.css"></head><body><section id="options"><div class="container options__content--holder"><div class="head__content--holder text-center"><img class="head__content--logo" src="assets/logo.png"><h2 class="head__content--title">kuttUrl</h2></div><div class="form__content--holder"><form class="form__content"><label class="api__key--label">API Key:</label> <input class="api__key--holder" id="api__key--value" spellcheck="false"><br><label class="password--label">Set Password <span class="password__label--optional">(Optional): <span class="password__label--tooltiptext text-center">Set Password for the Shortened URLs.<br>(20 Char. Max)</span></span></label> <input class="password--holder" id="password--value" type="password" maxlength="20"><div class="password__check--holder"><input type="checkbox" id="password__view--checkbox"> <span class="password__view--title">Show Password</span></div><br><button class="button__submit" id="button__submit" type="button">Save</button> <label class="saved__alert v-none">Saved!!</label></form></div><div class="footer__text--holder text-center mt-3">Made with ❤️ on <a class="github__repo--link" href="https://github.com/abhijithvijayan/kuttUrl-Chrome-extension" target="_blank">GitHub</a></div></div></section><script src="js/options.js"></script></body></html>

popup.html

Lines changed: 1 addition & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width,initial-scale=1">
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>kuttUrl</title>
8-
<link rel="stylesheet" href="css/popup.css">
9-
</head>
10-
<body>
11-
<section id="home">
12-
<div class="container">
13-
<nav class="navbar">
14-
<ul class="navbar__main">
15-
<li class="logo__content--holder">
16-
<img class="main__logo" src="assets/logo.png">
17-
</li>
18-
<li class="github__content-holder">
19-
<a href="https://github.com/abhijithvijayan/kuttUrl-Chrome-extension" target="_blank" rel="noopener" title="GitHub">
20-
<img class="github__logo" src="assets/github.svg"></a>
21-
</li>
22-
<li class="options__content-holder" id="options__content-holder" title="Options">
23-
<a href="options.html" target="_blank" rel="noopener">
24-
<img class="settings__logo" src="assets/settings.svg"></a>
25-
</li>
26-
</ul>
27-
</nav>
28-
<div class="content__holder">
29-
<div class="url__content--holder text-center">
30-
<h4 id="url__content-inner">Shortening...</h4>
31-
</div>
32-
<ul class="buttons__content--holder d-none">
33-
<li class="copy__content--holder">
34-
<img id="button__copy" src="assets/copy.svg" alt="copy" title="Copy">
35-
</li>
36-
<li class="details__content--holder">
37-
<img id="button__details" src="assets/chart.svg" alt="copy" title="Details">
38-
</li>
39-
<li class="qrbtn__content--holder">
40-
<img id="button__qrcode" src="assets/qrcode.svg" alt="copy" title="QR code">
41-
</li>
42-
</ul>
43-
<p class="copy__alert text-center d-none">Copied!!!</p>
44-
<div class="qrcode__content--holder text-center d-none">
45-
<img id="qr_code" src="#" alt="QRCode">
46-
</div>
47-
</div>
48-
</div>
49-
</section>
50-
51-
<script src="js/popup.js"></script>
52-
</body>
53-
</html>
1+
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>kuttUrl</title><link rel="stylesheet" href="css/popup.css"></head><body><section id="home"><div class="container"><nav class="navbar"><ul class="navbar__main"><li class="logo__content--holder"><img class="main__logo" src="assets/logo.png"></li><li class="github__content-holder"><a href="https://github.com/abhijithvijayan/kuttUrl-Chrome-extension" target="_blank" rel="noopener" title="GitHub"><img class="github__logo" src="assets/github.svg"></a></li><li class="options__content-holder" id="options__content-holder" title="Options"><a href="options.html" target="_blank" rel="noopener"><img class="settings__logo" src="assets/settings.svg"></a></li></ul></nav><div class="content__holder"><div class="url__content--holder text-center"><h4 id="url__content-inner">Shortening...</h4></div><ul class="buttons__content--holder d-none"><li class="copy__content--holder"><img id="button__copy" src="assets/copy.svg" alt="copy" title="Copy"></li><li class="details__content--holder"><img id="button__details" src="assets/chart.svg" alt="copy" title="Details"></li><li class="qrbtn__content--holder"><img id="button__qrcode" src="assets/qrcode.svg" alt="copy" title="QR code"></li></ul><p class="copy__alert text-center d-none">Copied!!!</p><div class="qrcode__content--holder text-center d-none"><img id="qr_code" src="#" alt="QRCode"></div></div></div></section><script src="js/popup.js"></script></body></html>

0 commit comments

Comments
 (0)