-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
80 lines (72 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Settings</title>
<link rel="stylesheet" type="text/css" href="/css/options.css">
<link href="/images/32px.png" rel="shortcut icon">
<script type="text/javascript" src="/options.js"></script>
</head>
<body>
<div class="header">
<div class="header-content">
<span class="header-title">Options</span>
<a class="rate" href="https://chrome.google.com/webstore/detail/copyright%2B-enable-right-c/pkoccklolohdacbfooifnpebakpbeipc?hl=en">
<span>Rate this extension</span>
</a>
</div>
</div>
<div class="table">
<div class="table-header">
<label class="label-title">User-List</label>
<label class="label-hint">Copy enabled for these websites</label>
</div>
<div class="table-grid">
<div id="user-list" class="table-grid-max">
</div>
<div class="list-empty">User-List is empty.</div>
</div>
<i class="table-border-bottom"></i>
</div>
<i class="border"></i>
<div class="info">
<div class="section">
<div class="section-title">Please Note:</div>
<ul class="section-list">
<li>This extension available on Google Chrome.</li>
<li>Enabling copy may break some websites functionality.</li>
<li>Copying may not be possible on websites using "div to iframe script", but there are alternative methods.</li>
<li>Some websites using a hidden frame or image (ghost image) above the text to prevent copy, and you will need to use your own method to remove it.</li>
</ul>
</div>
</div>
<!-- Existing HTML above... -->
<div class="technomare">
<div class="technomare-header">
<label class="article-title">Latest News</label>
</div>
<div class="article-grid">
<div id="rss-feed" class="technomare-grid-max">
</div>
</div>
<i class="technomare-border-bottom"></i>
</div>
<!-- Existing HTML below... -->
<i class="border"></i>
<div class="footer">
<div class="footer-content">
<div class="content-logo">
<i class="logo--ico"></i>
<div class="footer-content-info" >
<span class="content-info-name">CopyRight+: Enable Right Click & Copy</span>
<br>
<span class="content-info-ver">Version 1.1.1 (Google Chrome)</span>
</div>
</div>
<div class="browsers-support">
<a href="https://chrome.google.com/webstore/detail/copyright%2B-enable-right-c/pkoccklolohdacbfooifnpebakpbeipc?hl=en" class="ico--chrome" target="_blank" title="Google Chrome"></a>
</div>
</div>
</div>
</body>
</html>