Skip to content
This repository was archived by the owner on Apr 27, 2024. It is now read-only.

Commit 2687926

Browse files
committed
Built-in documetation and pop-up.
1 parent 80aa31d commit 2687926

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"manifest_version": 3,
33
"name": "C.AI Addons",
4-
"version": "0.4.0",
4+
"version": "0.4.6",
55
"description": "A browser extension that adds some features to character.ai",
66
"icons": {
77
"16": "icon16.png",
88
"32": "icon32.png"
99
},
1010
"action": {
11+
"default_popup": "popup.html",
1112
"default_icon": {
1213
"16": "icon16.png",
1314
"32": "icon32.png"

popup.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Popup</title>
5+
<style>
6+
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,300,500);
7+
body {
8+
width: 300px;
9+
height: 300px;
10+
font-family: 'Ubuntu', sans-serif;
11+
font-weight: 300;
12+
color: white;
13+
background: #2c2e30;
14+
}
15+
16+
a {
17+
color: #cccccc;
18+
text-decoration: bold;
19+
}
20+
21+
a:hover {
22+
color: #ffffff;
23+
text-decoration: bold underline;
24+
}
25+
26+
p {
27+
font-size: 14px;
28+
margin-top: 20px;
29+
}
30+
31+
#disclaimer {
32+
font-size: 10px;
33+
margin-top: 20px;
34+
}
35+
</style>
36+
</head>
37+
<body>
38+
<h1>Need help? See our <a href="https://lyubomirt.github.io/c.ai-addons/" target="_blank">documentation</a>!</h1>
39+
<p>This is an open-source project started by <a href="https://lyubomirt.github.io/" target="_blank">LyubomirT</a>. Our goal is to provide a free and open-source alternative to the commercial addons for the Character.ai platform. Of course, the project would not be possible without the help of the community. If you want to contribute, please visit our <a href="https://github.com/LyubomirT/c.ai-addons" target="_blank">GitHub repository</a>.</p>
40+
<b><p>Thank you for using C.AI Addons!</p></b>
41+
<p id="disclaimer">We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Character.ai, or any of its subsidiaries or its affiliates.</p>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)