Skip to content

Commit

Permalink
0.5.0 - updated README.md && webpack.common.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ingui-n committed Jan 14, 2023
1 parent de144f6 commit cf9559e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
35 changes: 19 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<a href="https://chrome.google.com/webstore/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf"><img alt="Chrome Web Store" width="250px" src="https://storage.googleapis.com/web-dev-uploads/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/HRs9MPufa1J1h5glNhut.png"/></a>
<a href="https://addons.mozilla.org/en-US/firefox/addon/music-score-downloader/"><img alt="Firefox Addons" width="218px" src="https://blog.mozilla.org/addons/files/2020/04/get-the-addon-fx-apr-2020.svg"/></a>

# MuseScore Downloader

This browser extension allows you to download:
Expand All @@ -11,30 +14,30 @@ This browser extension allows you to download:

## Installation
### Automatic Installation:
1. Download the extension from [Chrome Web Store](https://chrome.google.com/webstore/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf)
1. Install the extension from [Chrome Web Store](https://chrome.google.com/webstore/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf) or [Firefox Addons](https://addons.mozilla.org/en-US/firefox/addon/music-score-downloader/)

### Manual installation:
<details>
<summary>For Chromium users: (click)</summary>

1. Go to [the latest release](https://github.com/ingui-n/musescore-downloader/releases/latest)
2. Download the "musescore-downloader-packed.zip" file
3. Extract the ZIP file
2. Download the `musescore-downloader-manifest-v3.crx` file
3. Go to the browser extension manager [chrome:https://extensions/](chrome:https://extensions/)
4. Enable `Developer mode` (at the top right)
5. Drag and drop the file downloaded in the previous step into the browser window and click to install
6. That's it! Extension is now ready to use 🎉

<!-- <details>
<summary>For Chromium users: (click)</summary>
-->
4. Go to the browser addon manager [chrome:https://extensions/](chrome:https://extensions/)
5. Enable "Developer mode" (at the top right)
6. Click on "Load unpacked" button and select a directory with previously extracted files
7. That's it! Extension is now ready to use 🎉
<!-- </details>
</details>

<details>
<summary>For Firefox users: (click)</summary>

4. Go to the Firefox addons debugger [about:debugging#/runtime/this-firefox](about:debugging#/runtime/this-firefox)
5. Click on "Load Temporary Add-on" button and select the `manifest.json` file from previously extracted directory
6. That's it! Extension is now ready to use 🎉
1. Go to [the latest release](https://github.com/ingui-n/musescore-downloader/releases/latest)
2. Click to the `musescore-downloader-manifest-v2.crx` file
3. A bubble with text and button should appear. Click on `Continue to Installation` and `Add`
4. That's it! Extension is now ready to use 🎉
</details>
-->


## Usage:
1. Go to [MuseScore.com](https://musescore.com/)
Expand All @@ -43,7 +46,7 @@ This browser extension allows you to download:
4. Select what you want to do

## Supported browsers:
<!-- * Firefox -->
* Firefox
* Chrome
* Opera
* Brave
Expand Down
3 changes: 2 additions & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,6 @@ module.exports = {
filename: '[name].js',
path: path.join(__dirname, 'dist'),
clean: true,
}
},
devtool: false
};
3 changes: 1 addition & 2 deletions webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ const {merge} = require('webpack-merge');
const common = require('./webpack.common.js');

module.exports = merge(common, {
mode: 'development',
devtool: false
mode: 'development'
});

0 comments on commit cf9559e

Please sign in to comment.