Skip to content

Commit

Permalink
Merge pull request #12 from Xatta-Trone/change-logo
Browse files Browse the repository at this point in the history
Change logo
  • Loading branch information
Xatta-Trone authored Nov 28, 2023
2 parents f1cf59c + ac5ac16 commit ba08f80
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="./img/icon128.png" />
<img src="./img/icon128.jpg" />
</p>

<h1 align="center">Medium Parser</h1>
Expand Down Expand Up @@ -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 3<sup>rd</sup> party API proxy support.

Expand Down
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;"
Expand Down
Binary file added img/icon128.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/icon128.png
Binary file not shown.
Binary file added img/icon16.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/icon16.png
Binary file not shown.
Binary file added img/icon32.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/icon32.png
Binary file not shown.
Binary file added img/icon48.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/icon48.png
Binary file not shown.
Binary file added img/icon64.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/icon64.png
Binary file not shown.
Binary file added img/icon96.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/icon96.png
Binary file not shown.
14 changes: 7 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down

0 comments on commit ba08f80

Please sign in to comment.