Skip to content

Commit

Permalink
Merge pull request #31 from Xatta-Trone/add-menu-items
Browse files Browse the repository at this point in the history
Add advanced options
  • Loading branch information
Xatta-Trone authored Apr 27, 2024
2 parents 97a6756 + 81d695e commit 501f52e
Show file tree
Hide file tree
Showing 55 changed files with 1,685 additions and 5 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# See https://editorconfig.org for more about editor config.

# top-most EditorConfig file
root = true

# Match all files
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 80
trim_trailing_whitespace = true

# Markdown files
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# See https://prettier.io/docs/en/ignore.html for more about ignoring files from Prettier.

# Ignore artifacts:
build
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"semi": true
}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="./img/icon128.jpg" />
<img src="./chrome/img/icon128.jpg" />
</p>

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

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

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


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

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

## Preview
<p align="center">
<img src="./img/sample2.png" />
<img src="./chrome/img/sample2.png" />
</p>

## Star History
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

#### 1.5.4
[Issue #25](https://github.com/Xatta-Trone/medium-parser-extension/issues/25) Added more options and more supporting sites.

#### 1.5.3
[Issue #21](https://github.com/Xatta-Trone/medium-parser-extension/issues/21) `@username` and `/me/*` path excluded.

Expand Down
Loading

0 comments on commit 501f52e

Please sign in to comment.