-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (107 loc) · 6.39 KB
/
index.html
File metadata and controls
137 lines (107 loc) · 6.39 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
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
128
129
130
131
132
133
134
135
136
137
<!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">
<link rel="stylesheet" href="style.css">
<title>CodeCut Chrome Extension</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type = "text/css">
<link rel="stylesheet" href="./css/style.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="ext-header">
<h2 class="logo">
<img src="./logo.png" alt="" class="logo-icon"> CodeCut Extension
<span class="verion">( 1.0.0 )</span>
</h2>
</div>
<div class="ext-content">
<p>
Easily accessible user-customizable list to all the computing and programming services/resources
</p>
</div>
<button id="tabBtn">Save Current Tab</button>
<button id="deleteBtn">Delete All Saved Tabs</button>
<ul id="listUrl"></ul>
<button class="accordion dropdown-toggle w3-left-align w3-block service">Competitive Programming</button>
<div class="panel">
<div><a href="https://www.hackerrank.com/" target = "_blank"><img src="./images/icons/Competitive Programming/hackerrank.svg" alt="" class="service-icon">Hackerrank</a></div>
<div><a href="https://www.hackerearth.com/" target = "_blank"><img src="./images/icons/Competitive Programming/hackerearth.svg" alt="" class="service-icon">Hackerearth</a>
</div>
<div>
<a href="https://www.codechef.com/" target = "_blank"><img src="./images/icons/Competitive Programming/codechef.svg" alt="" class="service-icon">Codechef</a>
</div>
<div>
<a href="https://codeforces.com/" target = "_blank"><img src="./images/icons/Competitive Programming/codeforces.svg" alt="" class="service-icon">Codeforces</a>
</div>
<div>
<a href="https://leetcode.com/" target = "_blank"><img src="./images/icons/Competitive Programming/leetcode.svg" alt="" class="service-icon">Leetcode</a>
</div>
<div>
<a href="https://www.geeksforgeeks.org/" target = "_blank"><img src="./images/icons/Competitive Programming/geeks-for-geeks.svg" alt="" class="service-icon">Geeks-for-Geeks</a>
</div>
<div>
<a href="https://atcoder.jp/" target = "_blank"><img src="./images/icons/Competitive Programming/Atcoder.svg" alt="" class="service-icon">Atcoder</a>
</div>
</div>
<button class="accordion dropdown-toggle w3-left-align w3-block service">Community Services</button>
<div class="panel">
<div>
<a href="https://dev.to/" target = "_blank"><img src="./images/icons/Community/bxl-dev-to.svg" alt="" class="service-icon">Dev</a>
</div>
<div>
<a href="https://medium.com/" target = "_blank"><img src="./images/icons/Community/medium.svg" alt="" class="service-icon">Medium</a>
</div>
<div>
<a href="https://www.kaggle.com/" target = "_blank"><img src="./images/icons/Community/kaggle.svg" alt="" class="service-icon">Kaggle</a>
</div>
<div>
<a href="https://github.com/" target = "_blank"><img src="./images/icons/Community/github.svg" alt="" class="service-icon">GitHub</a>
</div>
<div>
<a href="https://stackoverflow.com/" target = "_blank"><img src="./images/icons/Community/stack-overflow.svg" alt="" class="service-icon">Stack-OverFlow</a>
</div>
<div>
<a href="https://slack.com" target="_blank"><img src="./images/icons/Community/slack-new-logo.svg">Slack</a>
</div>
</div>
<button class="accordion dropdown-toggle w3-left-align w3-block service">Development Resources</button>
<div class="panel">
<div><a href="https://codepen.io/" target = "_blank"><img src="./images/icons/Development/codepen.svg" alt="" class="service-icon">Codepen</a></div>
<div><a href="https://www.freecodecamp.org/" target = "_blank"><img src="./images/icons/Development/freecodecamp.png" alt="" class="service-icon"> FreeCodeCamp</a>
</div>
<div>
<a href="https://scrimba.com/" target = "_blank"><img src="./images/icons/Development/scrimba.jfif" alt="" class="service-icon">Scrimba</a>
</div>
<div>
<a href="https://developer.mozilla.org/en-US/" target = "_blank"><img src="./images/icons/Development/MDN.jfif" alt="" class="service-icon"> MDN Docs</a>
</div>
<div>
<a href="https://www.w3schools.com/" target = "_blank"><img src="./images/icons/Development/W3School.ico" alt="" class="service-icon"> W3Schools</a>
</div>
<div>
<a href="https://codesandbox.io/" target = "_blank"><img src="./images/icons/Development/SandBox.ico" alt="" class="service-icon">CodeSandBox</a>
</div>
</div>
<button class="accordion dropdown-toggle w3-left-align w3-block service">Open Source Resources</button>
<div class="panel">
<div><a href="https://fellowship.mlh.io/" target = "_blank"><img src="./images/icons/Open Source/mlh.svg" alt="" class="service-icon">MLH Fellowship</a></div>
<div><a href="https://summerofcode.withgoogle.com/" target = "_blank"><img src="./images/icons/Open Source/GSoC_logo.svg" alt="" class="service-icon"> GSOC</a>
</div>
<div>
<a href="https://hacktoberfest.digitalocean.com/" target = "_blank"><img src="./images/icons/Open Source/hacktoberfest.png" alt="" class="service-icon">HacktoberFest</a>
</div>
<div>
<a href="https://www.outreachy.org/" target="_blank"><img src="./images/icons/Open Source/outreachy.png">Outreachy</a>
</div>
</div>
<button class="accordion dropdown-toggle w3-left-align w3-block service">User Saved Tabs</button>
<div class="panel" id="savedTabs">
</div>
<script src="./script.js"></script>
</body>
</html>