-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedit.html
More file actions
84 lines (77 loc) · 2.63 KB
/
edit.html
File metadata and controls
84 lines (77 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quick Launcher: Edit Links</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"/>
<!--Boootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<style>
body{
padding: 20px;
}
h1 {
font-family: monospace;
font-size: 22px;
font-weight: 400;
margin: 0;
color: #2f5876;
}
a:link,
a:visited {
color: #000000;
outline: 0;
text-decoration: none;
}
.form-control{
padding: 5px;
border-radius: 3px 3px 3px 3px;
text-align:center;
}
.input-container {
display: flex;
width: 100%;
margin-bottom: 15px;
vertical-align:center;
}
.icon{
font-size:20px;
padding:5px;
}
.btn{
color: black;
border-radius: .25rem;
padding: 6px 12px;
line-height: 1rem;
font-size: 16px;
text-align: center;
vertical-align: middle;
background-color: white;
border: 1px solid 007bff;
margin-top: .25rem;
margin-bottom: .25rem;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);
transition: background-color 0.3s ease-in-out;
}
.btn:hover{
color: white;
background-color: black;
border-color: #0062cc;
}
</style>
</head>
<body>
<a href="popup.html"><button class="btn" align="left"><i class="fa fa-arrow-left"></i></button></a>
<!--<a href="https://github.com/Aayushi-Mittal/Quick-Launcher"><button class="btn" id="save"><i class="fa fa-star"></i></button><hr></a>-->
<h1 align="center">Customize Your Extention</h1><br>
<ol>
<li>Open `popup.js` file in any text editor that you have. You just need to change the links of your social media profiles. Please do not change anything else.
<img src="https://imgur.com/zBvprti.jpg"></li><br>
<li>After updating the links open <a href="https://chrome://extensions">chrome://extensions</a> and reload the extention by clicking on the icon.
<img src="https://imgur.com/9srttwp.jpg"></li><br>
<li>That's it. Now you can use it. 🎉</li>
</ol>
<script src="edit.js"></script>
</body>
</html>