Skip to content

Commit

Permalink
Deploy abhijithvijayan/kuttUrl-Chrome-extension to github.com/abhijit…
Browse files Browse the repository at this point in the history
…hvijayan/kuttUrl-Chrome-extension.git:extension
  • Loading branch information
traviscibot committed Jan 8, 2019
1 parent a16d802 commit f6d8514
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 100 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kuttUrl - Shorten URLs",
"version": "0.3.2",
"version": "0.3.3",
"description": "URL Shortener",
"background": {
"scripts": ["js/background.js"],
Expand Down
47 changes: 1 addition & 46 deletions options.html
Original file line number Diff line number Diff line change
@@ -1,46 +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" type="text" 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>
<!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>
54 changes: 1 addition & 53 deletions popup.html
Original file line number Diff line number Diff line change
@@ -1,53 +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>
<!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 comments on commit f6d8514

Please sign in to comment.