diff --git a/README.md b/README.md
index 2292a6a..f8a1c51 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
Medium Parser
@@ -38,6 +38,10 @@ Or install manually
### Updates
+#### 1.3.2
+Changed logo
+
+Change archive.is to archive.today for better proxy support
#### 1.3.0
Added 3rd party API proxy support.
diff --git a/app.js b/app.js
index f04e9c4..0d93256 100644
--- a/app.js
+++ b/app.js
@@ -117,8 +117,8 @@ function runMedium(url) {
a.setAttribute("target", "_blank"); //Set div attributes
archive = document.createElement("a");
- archive.href = `https://archive.is?url=${url}&run=1&referer=medium-parser`; // Instead of calling setAttribute
- archive.innerHTML = "Read from Archive.is";
+ archive.href = `https://archive.today?url=${url}&run=1&referer=medium-parser`; // Instead of calling setAttribute
+ archive.innerHTML = "Read from Archive";
archive.setAttribute(
"style",
"padding:14px 25px; color:white; background: #242424; display:block; margin-top:10px;text-align:center;"
diff --git a/img/icon128.jpg b/img/icon128.jpg
new file mode 100644
index 0000000..60977c5
Binary files /dev/null and b/img/icon128.jpg differ
diff --git a/img/icon128.png b/img/icon128.png
deleted file mode 100644
index a44f625..0000000
Binary files a/img/icon128.png and /dev/null differ
diff --git a/img/icon16.jpg b/img/icon16.jpg
new file mode 100644
index 0000000..6b0fb11
Binary files /dev/null and b/img/icon16.jpg differ
diff --git a/img/icon16.png b/img/icon16.png
deleted file mode 100644
index b620924..0000000
Binary files a/img/icon16.png and /dev/null differ
diff --git a/img/icon32.jpg b/img/icon32.jpg
new file mode 100644
index 0000000..c553ec6
Binary files /dev/null and b/img/icon32.jpg differ
diff --git a/img/icon32.png b/img/icon32.png
deleted file mode 100644
index ea92807..0000000
Binary files a/img/icon32.png and /dev/null differ
diff --git a/img/icon48.jpg b/img/icon48.jpg
new file mode 100644
index 0000000..2ad97e3
Binary files /dev/null and b/img/icon48.jpg differ
diff --git a/img/icon48.png b/img/icon48.png
deleted file mode 100644
index 38193be..0000000
Binary files a/img/icon48.png and /dev/null differ
diff --git a/img/icon64.jpg b/img/icon64.jpg
new file mode 100644
index 0000000..bd7841e
Binary files /dev/null and b/img/icon64.jpg differ
diff --git a/img/icon64.png b/img/icon64.png
deleted file mode 100644
index 79e9494..0000000
Binary files a/img/icon64.png and /dev/null differ
diff --git a/img/icon96.jpg b/img/icon96.jpg
new file mode 100644
index 0000000..abb21cd
Binary files /dev/null and b/img/icon96.jpg differ
diff --git a/img/icon96.png b/img/icon96.png
deleted file mode 100644
index 640ef43..0000000
Binary files a/img/icon96.png and /dev/null differ
diff --git a/manifest.json b/manifest.json
index 2283a92..cf1c9f6 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,15 +1,15 @@
{
"manifest_version": 3,
"name": "Medium parser",
- "version": "1.3.1",
+ "version": "1.3.2",
"description": "Unlocks the whole medium article on the go.",
"icons": {
- "16": "img/icon16.png",
- "32": "img/icon32.png",
- "48": "img/icon48.png",
- "64": "img/icon64.png",
- "128": "img/icon128.png",
- "96": "img/icon96.png"
+ "16": "img/icon16.jpg",
+ "32": "img/icon32.jpg",
+ "48": "img/icon48.jpg",
+ "64": "img/icon64.jpg",
+ "128": "img/icon128.jpg",
+ "96": "img/icon96.jpg"
},
"content_scripts": [
{