Skip to content

Commit 501f52e

Browse files
authored
Merge pull request #31 from Xatta-Trone/add-menu-items
Add advanced options
2 parents 97a6756 + 81d695e commit 501f52e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1685
-5
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See https://editorconfig.org for more about editor config.
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Match all files
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
indent_size = 2
11+
indent_style = space
12+
insert_final_newline = true
13+
max_line_length = 80
14+
trim_trailing_whitespace = true
15+
16+
# Markdown files
17+
[*.md]
18+
max_line_length = 0
19+
trim_trailing_whitespace = false

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# See https://prettier.io/docs/en/ignore.html for more about ignoring files from Prettier.
2+
3+
# Ignore artifacts:
4+
build

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"bracketSpacing": true,
5+
"bracketSameLine": false,
6+
"arrowParens": "always",
7+
"htmlWhitespaceSensitivity": "css",
8+
"insertPragma": false,
9+
"semi": true
10+
}

README.md

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

55
<h1 align="center">Medium Parser</h1>
@@ -10,7 +10,7 @@
1010

1111
## Installation Instructions
1212
### Google Chrome / Microsoft Edge / Chromium Browsers (Brave/Opera Mini/Thorium etc.)
13-
[![Download from Chrome Web store](img/chrome.png)](https://chromewebstore.google.com/detail/medium-parser/bdkfodcnmgegolifeafnpbgjnjfohado)
13+
[![Download from Chrome Web store](chrome/img/chrome.png)](https://chromewebstore.google.com/detail/medium-parser/bdkfodcnmgegolifeafnpbgjnjfohado)
1414

1515
![Chrome Web Store](https://img.shields.io/chrome-web-store/rating-count/bdkfodcnmgegolifeafnpbgjnjfohado)
1616
![Chrome Web Store](https://img.shields.io/chrome-web-store/rating/bdkfodcnmgegolifeafnpbgjnjfohado)
@@ -22,11 +22,11 @@ Or, Install manually
2222
1. Unzip the file and you should have a folder named `medium-parser-extension-main`.
2323
1. In Chrome/Edge go to the extensions page (`chrome://extensions` or `edge://extensions`).
2424
1. Enable Developer Mode by clicking the toggle button on the top right side of the browser.
25-
1. Drag the `medium-parser-extension-main` folder anywhere on the page to import it (do not delete the folder afterward).
25+
1. Drag the `chrome` folder anywhere on the page to import it (do not delete the folder afterward).
2626

2727

2828
### Mozilla Firefox
29-
[![Download from mozilla add-ons](img/firefox.png)](https://addons.mozilla.org/addon/medium-parser/)
29+
[![Download from mozilla add-ons](chrome/img/firefox.png)](https://addons.mozilla.org/addon/medium-parser/)
3030

3131
![Mozilla Add-on Rating](https://img.shields.io/amo/rating/medium-parser)
3232
![Mozilla Add-on Version](https://img.shields.io/amo/v/medium-parser)
@@ -51,7 +51,7 @@ Your contribution allows me to spend more time making this kind of extension/pro
5151

5252
## Preview
5353
<p align="center">
54-
<img src="./img/sample2.png" />
54+
<img src="./chrome/img/sample2.png" />
5555
</p>
5656

5757
## Star History

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
#### 1.5.4
4+
[Issue #25](https://github.com/Xatta-Trone/medium-parser-extension/issues/25) Added more options and more supporting sites.
5+
36
#### 1.5.3
47
[Issue #21](https://github.com/Xatta-Trone/medium-parser-extension/issues/21) `@username` and `/me/*` path excluded.
58

0 commit comments

Comments
 (0)