Skip to content

Commit ba08f80

Browse files
authored
Merge pull request #12 from Xatta-Trone/change-logo
Change logo
2 parents f1cf59c + ac5ac16 commit ba08f80

15 files changed

+14
-10
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="./img/icon128.png" />
2+
<img src="./img/icon128.jpg" />
33
</p>
44

55
<h1 align="center">Medium Parser</h1>
@@ -38,6 +38,10 @@ Or install manually
3838

3939

4040
### Updates
41+
#### 1.3.2
42+
Changed logo
43+
44+
Change archive.is to archive.today for better proxy support
4145
#### 1.3.0
4246
Added 3<sup>rd</sup> party API proxy support.
4347

app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ function runMedium(url) {
117117
a.setAttribute("target", "_blank"); //Set div attributes
118118

119119
archive = document.createElement("a");
120-
archive.href = `https://archive.is?url=${url}&run=1&referer=medium-parser`; // Instead of calling setAttribute
121-
archive.innerHTML = "Read from Archive.is";
120+
archive.href = `https://archive.today?url=${url}&run=1&referer=medium-parser`; // Instead of calling setAttribute
121+
archive.innerHTML = "Read from Archive";
122122
archive.setAttribute(
123123
"style",
124124
"padding:14px 25px; color:white; background: #242424; display:block; margin-top:10px;text-align:center;"

img/icon128.jpg

4.57 KB
Loading

img/icon128.png

-1.03 KB
Binary file not shown.

img/icon16.jpg

966 Bytes
Loading

img/icon16.png

-180 Bytes
Binary file not shown.

img/icon32.jpg

1.21 KB
Loading

img/icon32.png

-328 Bytes
Binary file not shown.

img/icon48.jpg

1.76 KB
Loading

img/icon48.png

-449 Bytes
Binary file not shown.

img/icon64.jpg

2.14 KB
Loading

img/icon64.png

-597 Bytes
Binary file not shown.

img/icon96.jpg

3.34 KB
Loading

img/icon96.png

-818 Bytes
Binary file not shown.

manifest.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"manifest_version": 3,
33
"name": "Medium parser",
4-
"version": "1.3.1",
4+
"version": "1.3.2",
55
"description": "Unlocks the whole medium article on the go.",
66
"icons": {
7-
"16": "img/icon16.png",
8-
"32": "img/icon32.png",
9-
"48": "img/icon48.png",
10-
"64": "img/icon64.png",
11-
"128": "img/icon128.png",
12-
"96": "img/icon96.png"
7+
"16": "img/icon16.jpg",
8+
"32": "img/icon32.jpg",
9+
"48": "img/icon48.jpg",
10+
"64": "img/icon64.jpg",
11+
"128": "img/icon128.jpg",
12+
"96": "img/icon96.jpg"
1313
},
1414
"content_scripts": [
1515
{

0 commit comments

Comments
 (0)