forked from denull/VK-Photo-Saver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
106 lines (91 loc) · 4.43 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
<!DOCTYPE html>
<html lang="ru">
<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">
<meta name="color-scheme" content="dark light">
<link rel="stylesheet" href="./css/options.css">
<title>VK Saver</title>
<script src='common.js'></script>
</head>
<body>
<div class="container">
<header>
<img class="favicon" src="./images/icon.svg" alt="Icon">
<h1 class="title">VK Saver</h1>
<div id="block_logged" class="profile">
<a id="link_user" class="user" href="http://vk.com" target='_blank'></a>
<button id="link_logout" class="logout">выйти</button>
</div>
</header>
<main id="block_auth" class="auth">
<div class="box">
<p>Для начала работы с расширением необходимо разрешить ему доступ к вашим фотоальбомам на
сайте ВКонтакте:</p>
<button class="add" id="button_auth">Разрешить доступ</button>
</div>
</main>
<main id="block_settings">
<p class="description">Добавить в контекстное меню:</p>
<div class="box">
<input type="checkbox" id="check_album" />
<label for="check_album">Загрузить в альбом</label>
<div class="preferences">
<div class="albums">
<p class="meta">Альбомы:</p>
<div id="albums-block">
</div>
<button id="link_add" class="add">Добавить</button>
</div>
<div class="after-donwload">
<p class="meta">После загрузки: </p>
<div class="radio">
<input class="radio_copy" type="radio" id="radio_copy_none" name="after-donwload" value="none" checked>
<label for="radio_copy_none">Ничего не делать</label>
</div>
<div class="radio">
<input class="radio_copy" type="radio" id="radio_copy_src" name="after-donwload" value="copy_src">
<label for="radio_copy_src">Скопировать ссылку на изображение</label>
</div>
<div class="radio">
<input class="radio_copy" type="radio" id="radio_copy_page" name="after-donwload" value="copy_page">
<label for="radio_copy_page">Скопировать ссылку на страницу фото</label>
</div>
<input type="checkbox" id="check_save_source_url" />
<label for="check_save_source_url">Сохранить ссылку на оригинал в описание</label>
</div>
</div>
</div>
<div class="box">
<input type="checkbox" id="check_message" />
<label for="check_message">Прикрепить к сообщению</label>
</div>
<div class="box">
<input type="checkbox" id="check_post" />
<label for="check_post">Прикрепить к новой записи</label>
</div>
<div class="box">
<input type="checkbox" id="check_full_post" />
<label for="check_full_post">Прикрепить пост с Tumblr к новой записи</label>
</div>
<div class="box">
<input type="checkbox" id="check_tabs" />
<label for="check_tabs">Прикрепить к сообщению или публикации в одной из открытых вкладок</label>
</div>
</main>
<footer>
<a href="https://github.com/imperatrona/vk-saver">
<svg class="icon" width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
<title>GitHub</title>
<g stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<path
d="M7.875 21.75a2.25 2.25 0 0 0 2.25-2.25V15M16.125 21.75a2.25 2.25 0 0 1-2.25-2.25V15M14.25 15h1.5A2.25 2.25 0 0 1 18 17.25V18a2.25 2.25 0 0 0 2.25 2.25M9.75 15h-1.5A2.25 2.25 0 0 0 6 17.25V18a2.25 2.25 0 0 1-2.25 2.25M6.048 7.191A4.866 4.866 0 0 1 6.375 3a4.871 4.871 0 0 1 4.109 2.25v0h3.032v0A4.871 4.871 0 0 1 17.625 3a4.865 4.865 0 0 1 .327 4.191v0c.521.752.8 1.645.798 2.559v.75a4.5 4.5 0 0 1-4.5 4.5h-4.5a4.5 4.5 0 0 1-4.5-4.5v-.75a4.48 4.48 0 0 1 .798-2.559h0Z" />
</g>
</svg>
</a>
</footer>
</div>
<script src='options.js'></script>
</body>
</html>