Skip to content

Commit 80e2d9e

Browse files
committed
bug fixes
Signed-off-by: Magic <magicoflolis@tuta.io>
1 parent 22d4493 commit 80e2d9e

102 files changed

Lines changed: 2415 additions & 7404 deletions

File tree

Some content is hidden

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

.eslintignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
/src/header.js
2-
src/header.js
3-
header.js
4-
5-
/tools/userscript.js
6-
tools/userscript.js
7-
userscript.js
1+
userscript/header.js

.eslintrc.json

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

.gitignore

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# Dependency directories
2+
**/node_modules/**
23
yarn.lock
3-
node_modules/
4-
jspm_packages/
5-
.vscode/.history/
4+
.vscode/.history
65
web-ext-artifacts
6+
tests/firefox/*
7+
tests/chrome/*
8+
tests/userscript/magic-userjs.dev.user.js
79
web-ext
8-
build
9-
/build/
10-
Notes
11-
/Notes/
12-
chrlauncher
13-
/chrlauncher/
10+
**/build/**
11+
**/Notes/**
12+
**/chrlauncher/**
1413

1514
# dotenv environment variable file
1615
.env

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.swcrc

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
{
2+
"$schema": "https://json.schemastore.org/swcrc",
23
"jsc": {
34
"parser": {
4-
"syntax": "ecmascript"
5+
"syntax": "ecmascript",
6+
"jsx": false,
7+
"dynamicImport": false,
8+
"privateMethod": false,
9+
"functionBind": false,
10+
"exportDefaultFrom": false,
11+
"exportNamespaceFrom": false,
12+
"decorators": false,
13+
"decoratorsBeforeExport": false,
14+
"topLevelAwait": false,
15+
"importMeta": false
516
},
617
"target": "es2020"
718
},
819
"module": {
9-
"type": "es6"
20+
"type": "es6",
21+
"strict": false,
22+
"strictMode": true,
23+
"lazy": false,
24+
"noInterop": false
1025
}
11-
}
26+
}

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compounds": [
44
{
55
"name": "Attach/Launch",
6-
"configurations": ["Attach:Firefox", "Start:Firefox"]
6+
"configurations": ["Attach:Firefox", "SF"]
77
}
88
],
99
"configurations": [

README.de.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Magic Userscript+
22

3-
![Menu Preview](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/resources/preview.png)
3+
| Preview(s) |
4+
|:----------:|
5+
![Demo 1](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo3.gif)|
6+
![Demo 2](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo2.gif)|
7+
![Demo 3](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo1.png)|
48

59
## Source Code
610

README.es.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Magic Userscript+
22

3-
![Menu Preview](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/resources/preview.png)
3+
| Preview(s) |
4+
|:----------:|
5+
![Demo 1](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo3.gif)|
6+
![Demo 2](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo2.gif)|
7+
![Demo 3](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo1.png)|
48

59
## Source Code
610

README.fr.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Magic Userscript+
22

3-
![Menu Preview](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/resources/preview.png)
3+
| Preview(s) |
4+
|:----------:|
5+
![Demo 1](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo3.gif)|
6+
![Demo 2](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo2.gif)|
7+
![Demo 3](https://raw.githubusercontent.com/magicoflolis/Userscript-Plus/master/assets/demo1.png)|
48

59
## Source Code
610

README.gf.md

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

0 commit comments

Comments
 (0)