Skip to content

Commit e69780b

Browse files
committed
more folder management
1 parent ab937b9 commit e69780b

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# wiki-extension
22
a **chrome extension** that visualizes what youve been exploring on wikipedia and saves it as your new tab so you can recall more often.
33
Looks like this:
4-
<img width="1409" alt="new tab page" src="https://github.com/Shahzzoda/wiki-extension/blob/main/main.png">
4+
<img width="1409" alt="new tab page" src="https://github.com/Shahzzoda/wiki-extension/blob/main/img/main.png">
55

66
# how to use
77
1. read wiki pages
@@ -23,7 +23,7 @@ Looks like this:
2323
4. press load unpacked
2424
5. go to this folder and open
2525
Should look like this
26-
<img width="1840" alt="extension page for devs" src="https://github.com/Shahzzoda/wiki-extension/blob/main/developer_ext.png">
26+
<img width="1840" alt="extension page for devs" src="https://github.com/Shahzzoda/wiki-extension/blob/main/img/developer_ext.png">
2727

2828
# open tasks
2929
- if you open in a new tab and dont visit the site, node is null and therefore you wont see the graph. in chrome's developer console you can see which node is null and visit it to get around/unblock yourself locally
File renamed without changes.

iroh.png img/iroh.png

File renamed without changes.

main.png img/main.png

File renamed without changes.

manifest.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"description": "Visually depicts your journey through the wiki archives",
55
"version": "1.0.0",
66
"action": {
7-
"default_icon": "iroh.png"
7+
"default_icon": "img/iroh.png"
88
},
99
"icons": {
10-
"16": "iroh.png",
11-
"32": "iroh.png",
12-
"48": "iroh.png",
13-
"128": "iroh.png"
10+
"16": "img/iroh.png",
11+
"32": "img/iroh.png",
12+
"48": "img/iroh.png",
13+
"128": "img/iroh.png"
1414
},
1515
"permissions": [
1616
"storage",
@@ -25,7 +25,7 @@
2525
"matches": [
2626
"https://developer.chrome.com/docs/extensions/*",
2727
"https://developer.chrome.com/docs/webstore/*",
28-
"https://*.wikipedia.org/*"
28+
"https://*.wikipedia.org/*"
2929
],
3030
"module": true
3131
},
@@ -42,4 +42,4 @@
4242
"chrome_url_overrides": {
4343
"newtab": "newtab.html"
4444
}
45-
}
45+
}

newtab.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<script src="scripts/chart.js" type="module"></script>
88
<script src="scripts/notes.js" type="module"></script>
99
<script src="scripts/showhighlights.js" type="module"></script>
10-
<link rel="stylesheet" type="text/css" href="style.css" />
10+
<link rel="stylesheet" type="text/css" href="style/style.css" />
1111
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
1212
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
1313
</head>

style.css style/style.css

File renamed without changes.

0 commit comments

Comments
 (0)