forked from shgysk8zer0/youtube-subscribe-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
32 lines (32 loc) · 1.19 KB
/
options.html
File metadata and controls
32 lines (32 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title>YouTub RSS Options</title>
<meta charset="UTF-8" />
<script src="js/options.js" async=""></script>
<link rel="stylesheet" href="css/options.css" media="all" />
</head>
<body>
<!-- https://developer.mozilla.org/en-US/Add-ons/WebExtensions/user_interface/Options_pages -->
<form name="options">
<fieldset>
<legend>Subscribe Using</legend>
<label for="subscribe-rss" class="browser-style-label" title="Select icon">
<img width="32" height="32" src="img/rss.svg" />
<span>RSS</span>
</label>
<input type="radio" name="service" id="subscribe-rss" value="rss" checked="" />
<label for="subscribe-feedly" class="browser-style-label" title="Select icon">
<img width="32" height="32" src="img/feedly.svg" />
<span>Feedly</span>
</label>
<input type="radio" name="service" value="feedly" id="subscribe-feedly" />
<label for="subscribe-inoreader" class="browser-style-label" title="Select icon">
<img width="32" height="32" src="img/inoreader.svg" />
<span>Inoreader</span>
</label>
<input type="radio" name="service" value="inoreader" id="subscribe-inoreader" />
</fieldset>
</form>
</body>
</html>