-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowserExtensionInstallGuide.html
More file actions
137 lines (128 loc) · 4.42 KB
/
browserExtensionInstallGuide.html
File metadata and controls
137 lines (128 loc) · 4.42 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<title>How to install an unpacked browser extension</title>
<link rel="icon" href="logo.png">
<link rel="apple-touch-icon" href="logo180px.png">
<style>
body {
font-family: arial;
margin: 0px;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: flex-start;
overflow-x: hidden;
}
.main {
background-color: white;
width: 650px;
padding-top: 10px;
padding-left: 0px;
}
.main code {
background-color: #818b981f;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 4px;
padding-right: 4px;
border-radius: 3px;
}
.main li {
margin-top: 6px;
}
.popupHint {
background-color: rgb(250, 250, 178);
padding: 10px;
border-radius: 5px;
}
#moreLinebreak {
display: none
}
</style>
</head>
<body>
<div class="main" id="main">
<ol>
<li>
<h2>Download the extensions</h2>
<ul>
<li>When you open a github repoistiories of a browser extension, on the top of the repoistiories,
click the
green
<strong>Code</strong> button and then select
<strong>Download as ZIP.</strong>
</li>
<li>After you downloaded the zip files, extract the file on your computer.</li>
</ul>
</li>
<li>
<h2>Go to the extensions setting page.</h2>
<ul>
<li>Open your browser and go to the extensions setting page.</li>
<li>For Google Chrome go to
<code>chrome://extensions</code>
</li>
<li>For Microsoft Edge go to <code>edge://extensions</code> </li>
</ul>
</li>
<li>
<h2>Turn on "Developer mode".</h2>
<ul>
<li>There has a switch on the browser and it is called <strong>Developer mode</strong>, enable it to
turn on developer mode.</li>
</ul>
</li>
<li>
<h2>Upload unpacked folder</h2>
<ol>
<li>Click "Load unpacked" and select the folders where you extract the files.</li>
</ol>
</li>
<li>
<h2>Enable the extensions.</h2>
<ul>
<li>Turn on your extensions on your browser's extensions setting page</li>
</ul>
</li>
<li>
<h2>Done</h2>
<ul>
<li>Go to the search bar of the browser and you will see the extensions.</li>
</ul>
</li>
</ol>
<div class="popupHint" id="popupHint">
<br>
<img src="Images/EdgeUnpackedExtensionWarningPopup.png"
alt="Edge Unpacked Extension Warning Popup" style="width:100%;height:200px;object-fit: contain;">
<br>
<br>
For sercurity reason, browser will remind you with a popup message that said you turned on
the developer mode
because you installed a third party extensions, if you make sure the extensions is from trused sources or
you
checked the code that it is safe to use, then you can ignore the message.
</div>
<div id="moreLinebreak">
<br>
<br>
<br>
<br>
</div>
</div>
<script>
if (window.opener) {
const newStyle = document.createElement("style");
newStyle.innerText = "body{overflow-y: hidden;background-color:white}";
document.body.appendChild(newStyle);
} else {
const footer = document.createElement("script");
footer.src = "https://richardliucode.github.io/richardcode/RichardJS/footer.js";
document.body.appendChild(footer);
document.getElementById("moreLinebreak").style.display = "revert"
}
</script>
</body>
</html>