-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.75 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.75 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pen+ Extensions</title>
<link rel="stylesheet" href="themes.css" />
<link rel="stylesheet" href="styles.css" />
<meta name="theme-color" content="#0fbd8c">
<meta property="og:title" content="Pen-Group Extensions">
<meta property="og:description" content="The extension page for Pen-Group">
<meta property="og:image" content="https://pen-group.github.io/docs/generalImages/logo.svg">
</head>
<body class="theme__Light">
<div class="holder">
<h1>Extensions and Addons</h1>
<p>Since V7, Pen+ supports addons and sister extensions. All extensions on this gallery are reviewed and archived for future users</p><p>Since Pen+ supports <a href="https://turbowarp.org/">Turbowarp</a>, <a href="https://penguinmod.com/">Penguinmod</a>, and <a href="https://alpha.unsandboxed.org/">Unsandboxed</a> some addons may not support all scratch modifications!</p>
<div class="infobox_red">
It should go without saying that these extensions do not work on Scratch.
</div>
<div class="infobox_green">
Not everything on here could be by the Pen Group. Go check out the
<a href="https://github.com/Pen-Group/extensions/graphs/contributors">contributors</a>
</div>
</div>
<div class="holder">
<div class="extensionHolder" id="extensionsGoHereLol"></div>
</div>
<script>
document.addEventListener("click", function (e) {
var toCopy = e.target.getAttribute("data-copy");
if (toCopy) {
navigator.clipboard.writeText(toCopy);
}
});
</script>
<script src="page.js"></script>
</body>
</html>