-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (62 loc) · 2.69 KB
/
index.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
<!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">
<meta name="description" content="Online tool to synchronize and manage disavow links for Google Search Console">
<title>Disavow links manager</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔗</text></svg>">
<link rel="stylesheet" href="/src/css/styles.css">
</head>
<body>
<header>
<h1>Disavow links manager 🔗</h1>
<p>Synchronize and manage disavow links for Google Search Console.</p>
</header>
<main>
<div class="row">
<div class="col">
<h2><label for="disavow-file">Upload existing disavow file:</label></h2>
<div class="upload-container">
<input id="disavow-file" class="upload" type="file" accept=".txt">
</div>
<div class="output" id="disavow-file-output"></div>
<div class="controls">
<button class="control" id="copy-links" title="Copy links to clipboard" disabled>Copy to clipboard</button>
<button class="control" id="download-links" title="Download ready to use file" disabled>Download file</button>
<button class="control" id="clear-links" title="Clear links" disabled>Clear</button>
</div>
</div>
<div class="col">
<h2><label for="csv-file">Upload CSV file (from GSC):</label></h2>
<div class="upload-container">
<input id="csv-file" class="upload" type="file" accept=".csv">
</div>
<div class="output" id="csv-file-output">
<table class="table">
<thead></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<div class="guide">
<h2>How to use:</h2>
<ol>
<li>Export and upload CSV file containing external links from Google Search Console;</li>
<li>In the generated table select those links you with to disavow;</li>
<li>(Optional) Upload existing disavow file;</li>
<li>Copy selected links to clipboard or download ready to use file;</li>
<li>Upload the file with links to <a href="https://search.google.com/search-console/disavow-links" target="_blank" rel="noreferrer noopener">Google Search Console's disavow links tool.</a></li>
</ol>
</div>
</main>
<footer>
<p>
Made by <a href="https://twitter.com/nikita_hlopov">@nikitahl</a> | View on <a href="https://github.com/nikitahl/disavow-link-manager">GitHub</a>
</p>
</footer>
<script type="module" src="/src/js/script.js"></script>
</body>
</html>