Skip to content

Commit 00ea5cd

Browse files
committed
2.0.3
Signed-off-by: magicoflolis <magicoflolis@gmail.com>
1 parent 81a6571 commit 00ea5cd

19 files changed

Lines changed: 335 additions & 325 deletions

File tree

.gitignore

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,12 @@ jspm_packages/
66
# dotenv environment variables file
77
.env
88

9-
.vscode
10-
.vs/
9+
.vscode/.history
1110

1211
*.bak
1312
*.code-workspace
1413
*.web-extension-id
1514
web-ext-artifacts
1615
web-ext
17-
build
18-
/build/
1916
Notes
20-
/Notes/
21-
chrome
22-
/chrome/
17+
/Notes/

.vscode/launch.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"version": "0.2.0",
3+
"compounds": [
4+
{
5+
"name": "Attach/Launch",
6+
"configurations": ["Attach:Firefox", "SF"]
7+
}
8+
],
9+
"configurations": [
10+
{
11+
"name": "Attach:Firefox",
12+
"type": "firefox",
13+
"request": "attach",
14+
},
15+
{
16+
"name": "SF",
17+
"type": "firefox",
18+
"request": "launch",
19+
"reAttach": true,
20+
"reloadOnAttach": true,
21+
"keepProfileChanges": false,
22+
"clearConsoleOnReload": true,
23+
"url": "https://www.google.com/",
24+
"addonPath": "${workspaceFolder}\\dist\\extension"
25+
}
26+
]
27+
}

dist/extension/js/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const countApi = "https://greasyfork.org/scripts/by-site.json",
22
adultAPI = "https://sleazyfork.org/scripts/by-site.json",
3-
brws = (typeof browser == "undefined") ? chrome : browser,
3+
brws = typeof browser === "undefined" ? chrome : browser,
44
getCurrentTabUrl = (callback) => {
55
try {
66
let queryInfo = {

dist/extension/js/popup.js

Lines changed: 69 additions & 100 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/extension/js/popup.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/magic-userjs.gf.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
// @exclude *://*myetherwallet.com/*
4949
// @require https://greasyfork.org/scripts/23419-l-js/code/ljs.js
5050
// @require https://greasyfork.org/scripts/23420-userjs-base-js/code/userjs-basejs.js
51-
// @resource uiJs https://github.com/magicoflolis/Userscript-Plus/raw/master/dist/ui.gf.js?_=1624416586308
52-
// @resource ui https://cdn.jsdelivr.net/gh/jae-jae/Userscript-Plus/dist/ui.html?_=1624416586309
51+
// @resource uiJs https://github.com/magicoflolis/Userscript-Plus/raw/master/dist/ui.gf.js?_=1624486594564
52+
// @resource ui https://cdn.jsdelivr.net/gh/jae-jae/Userscript-Plus/dist/ui.html?_=1624486594565
5353
// @resource count https://greasyfork.org/scripts/by-site.json
5454
// @resource adult https://sleazyfork.org/scripts/by-site.json
5555
// @grant GM_xmlhttpRequest

dist/magic-userjs.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
// @exclude *://*myetherwallet.com/*
4949
// @require https://cdn.jsdelivr.net/gh/jae-jae/l.js/userjs/l.userjs.min.js
5050
// @require https://greasyfork.org/scripts/23420-userjs-base-js/code/userjs-basejs.js
51-
// @resource uiJs https://github.com/magicoflolis/Userscript-Plus/raw/master/dist/ui.js?_=1624416586308
52-
// @resource ui https://cdn.jsdelivr.net/gh/jae-jae/Userscript-Plus/dist/ui.html?_=1624416586308
51+
// @resource uiJs https://github.com/magicoflolis/Userscript-Plus/raw/master/dist/ui.js?_=1624486594564
52+
// @resource ui https://cdn.jsdelivr.net/gh/jae-jae/Userscript-Plus/dist/ui.html?_=1624486594564
5353
// @resource count https://greasyfork.org/scripts/by-site.json
5454
// @resource adult https://sleazyfork.org/scripts/by-site.json
5555
// @grant GM_xmlhttpRequest

dist/ui.gf.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ui.gf.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ui.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)