Skip to content

Commit 2b9ee10

Browse files
committed
Push
Signed-off-by: magicoflolis <magicoflolis@gmail.com>
1 parent 5b4f313 commit 2b9ee10

21 files changed

Lines changed: 85 additions & 36093 deletions

.gitignore

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
node_modules/
1+
/tmp/
2+
node_modules
3+
Notes
4+
/Notes/
25
browser/
3-
build/
4-
web-ext-artifacts/
56
.vscode/
6-
.idea/
7-
.DS_Store
87
*.web-extension-id
9-
*.bak
108
*.code-workspace

README.md

Lines changed: 37 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,51 @@
1-
<!-- ![userscript+.gif](https://cdn.rawgit.com/jae-jae/_resources/master/img/userscript+.gif) -->
1+
# Additional source code & information found [here](https://github.com/jae-jae/Userscript-Plus#userscript)
22

3-
# Userscript+ For Firefox
3+
**Finds available UserJS for current site.**
44

5-
> Finds available UserJS for current site.
5+
- [Additional source code & information found here](#additional-source-code--information-found-here)
6+
- [About](#about)
7+
- [Installation](#installation)
8+
- [Firefox Add-ons web site](#firefox-add-ons-web-site)
9+
- [Manual](#manual)
10+
- [Build Setup](#build-setup)
11+
- [License](#license)
612

7-
![Preview](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/resources/example.png)
13+
## About
814

9-
> Fork of [https://github.com/jae-jae/Userscript-Plus#userscript](https://github.com/jae-jae/Userscript-Plus#userscript)
15+
Userscript+ is a `Firefox addon` designed to be used along side with `Tampermonkey`
1016

11-
## More Information [here](https://github.com/jae-jae/Userscript-Plus)
17+
Many times, we do not know whether some sites have users to provide the script to optimize the page, but Userscript+ will be able to help you automatically find the applicable UserJS, and by default, according to the score from high to low order recommended to you, bring you a new `Tampermonkey` use experience!
18+
19+
| Preview |
20+
:----------:
21+
|![Example](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/resources/example.png)|
1222

1323
## Installation
1424

15-
- Download from [release](https://github.com/magicoflolis/Userscript-Plus/releases)
25+
### [Firefox Add-ons web site](https://addons.mozilla.org/firefox/addon/userscript-plus)
26+
27+
### Manual
28+
29+
> **Note:** Userscript+ will be installed as a [Temporary Extension](https://extensionworkshop.com/documentation/develop/temporary-installation-in-firefox/)
1630
17-
- [Firefox Addon](https://addons.mozilla.org/addon/uscriptplus)
31+
- Direct download the [zip](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/web-ext/userscript_for_tampermonkey-2.0.zip), load it as a [Temporary Extension](https://extensionworkshop.com/documentation/develop/temporary-installation-in-firefox/).
32+
- _OR_ clone the repository, zip the [extension folder](https://github.com/magicoflolis/Userscript-Plus/tree/master/extension), load as a [Temporary Extension](https://extensionworkshop.com/documentation/develop/temporary-installation-in-firefox/).
1833

19-
- Chrome Extension: [https://github.com/jae-jae/Userscript-Plus/raw/master/crx/extension.crx](https://github.com/jae-jae/Userscript-Plus/raw/master/crx/extension.crx)
34+
## Build Setup
2035

21-
### Build Setup
36+
> [web-ext documentation](https://extensionworkshop.com/documentation/develop/getting-started-with-web-ext/)
2237
23-
``` bash
24-
# install development dependencies
38+
```bash
39+
# Install development dependencies
2540
npm i
26-
# run
27-
web-ext run -s ./extension-dist/
41+
# Build if src was modified
42+
webpack
43+
# Run
44+
web-ext run -s ./extension/
45+
# Recommended to create additional profile about:profiles
46+
web-ext run -p <profile> -s ./extension/
2847
```
48+
49+
## License
50+
51+
MIT

dist/firefox/updates.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"addons": {
3-
"uscriptplus@mol.com": {
3+
"uscriptplus@mol.com ": {
44
"updates": [
55
{
66
"version": "1.4.5",
77
"browser_specific_settings": { "gecko": { "strict_min_version": "55" } },
8-
"update_info_url": "https://github.com/magicoflolis/Userscript-Plus/releases/tag/1.4.6",
9-
"update_link": "https://github.com/magicoflolis/Userscript-Plus/releases/download/1.4.6/uscriptplus_1.4.6.firefox.signed.xpi"
8+
"update_info_url": "https://github.com/magicoflolis/Userscript-Plus/releases/tag/2.0",
9+
"update_link": "https://github.com/magicoflolis/Userscript-Plus/releases/download/2.0/uscriptplus_2.0.firefox.signed.xpi"
1010
}
1111
]
1212
}

extension-dist/background.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

extension-dist/images/icon_128.png

-9.93 KB
Binary file not shown.

extension-dist/images/icon_16.png

-458 Bytes
Binary file not shown.

extension-dist/images/icon_32.png

-852 Bytes
Binary file not shown.

extension-dist/images/icon_96.png

-4.63 KB
Binary file not shown.

extension-dist/img/icon_128.png

-9.93 KB
Binary file not shown.

extension-dist/img/icon_16.png

-458 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)