-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
127 lines (113 loc) · 3.68 KB
/
options.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Social visual alt text options</title>
</head>
<body>
<fieldset>
<legend>Enable visual alt text for</legend>
<p>
<label>
<input type="checkbox" id="twitter_images" />
Twitter images
</label>
</p>
<p>
<label>
<input type="checkbox" id="twitter_gifs" />
Twitter GIFs
</label>
</p>
<p>
<label>
<input type="checkbox" id="instagram_images" />
Instagram images
</label>
</p>
<p>
<label>
<input type="checkbox" id="facebook_images" />
Facebook images
</label>
</p>
<p>
<label>
<input type="checkbox" id="tweetdeck_images" />
Tweetdeck images
</label>
</p>
<p>
<label>
<input type="checkbox" id="linkedin_images" />
LinkedIn images
</label>
</p>
<p>
<label>
<input type="checkbox" id="mastodon_images" />
Mastodon images
</label>
</p>
<p>
<label>
<input type="checkbox" id="bluesky_images" />
Blueksy images
</label>
</p>
<p>
<label>
<input type="checkbox" id="threads_images" />
Threads images
</label>
</p>
</fieldset>
<fieldset>
<legend>Color options</legend>
<p>
<label>
<input type="color" value="#FF0000" id="color_no_alt" />
No alt text color
</label>
</p>
<p>
<label>
<input
type="color"
value="#0000FF"
id="color_alt_background"
/>
Human generated alt text background color
</label>
</p>
<p>
<label>
<input
type="color"
value="#750238"
id="ai_color_alt_background"
/>
AI generated alt text background color
</label>
</p>
<p>
<label>
<input type="color" value="#FFFFFF" id="color_alt_text" />
Alt text color
</label>
</p>
</fieldset>
<p>
<div id="status"></div>
<button id="save">Save</button>
<!-- <button id="reset">Reset</button> -->
</p>
<p>Enjoying the extension? Help fund the maintenance and buy me a coffee.</p>
<p><a href="https://buymeacoffee.com/nickdenardis" target="_blank" rel="noopener noreferrer">
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;">
</a></p>
<script src="options.js"></script>
</body>
</html>