Skip to content

Commit 12a0ad9

Browse files
committed
Rename folders in scripts folder again
1 parent 431f87c commit 12a0ad9

File tree

19 files changed

+26
-18
lines changed

19 files changed

+26
-18
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules
22

3-
scripts/* (private)
3+
scripts/*-private
44
scripts/*/dev.user.js

bun.lockb

1.2 KB
Binary file not shown.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"concurrently": "8.2.2",
4444
"eslint": "8.x",
4545
"eslint-plugin-react": "^7.34.3",
46+
"glob-concat": "^1.0.3",
4647
"glob-watcher": "6.0.0",
4748
"globals": "^15.8.0",
4849
"prettier": "3.3.2",

scripts/Ads Remover/script.user.js scripts/Ads-Remover/script.user.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// @license MIT
1010
// @grant unsafeWindow
1111
// @noframes
12-
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Ads%20Remover
12+
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Ads-Remover
1313
// ==/UserScript==
1414

1515
const css = (strs) => strs.join('')
File renamed without changes.

scripts/Auto Skip YouTube Ads/script.user.js scripts/Auto-Skip-YouTube-Ads/script.user.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// @name:hi YouTube विज्ञापन स्वचालित रूप से छोड़ें
1212
// @name:th ข้ามโฆษณา YouTube อัตโนมัติ
1313
// @namespace https://github.com/tientq64/userscripts
14-
// @version 4.3.1
14+
// @version 4.3.2
1515
// @description Automatically skip YouTube ads almost instantly. Very lightweight and efficient.
1616
// @description:vi Tự động bỏ qua quảng cáo YouTube gần như ngay lập tức. Rất nhẹ và hiệu quả.
1717
// @description:zh-CN 几乎立即自动跳过 YouTube 广告。非常轻量且高效。
@@ -35,7 +35,7 @@
3535
// @compatible safari
3636
// @compatible edge
3737
// @noframes
38-
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Auto%20Skip%20YouTube%20Ads
38+
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Auto-Skip-YouTube-Ads
3939
// ==/UserScript==
4040

4141
function skipAd() {

scripts/Auto Skip YouTube Ads/script.user.ts scripts/Auto-Skip-YouTube-Ads/script.user.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// @name:hi YouTube विज्ञापन स्वचालित रूप से छोड़ें
1212
// @name:th ข้ามโฆษณา YouTube อัตโนมัติ
1313
// @namespace https://github.com/tientq64/userscripts
14-
// @version 4.3.1
14+
// @version 4.3.2
1515
// @description Automatically skip YouTube ads almost instantly. Very lightweight and efficient.
1616
// @description:vi Tự động bỏ qua quảng cáo YouTube gần như ngay lập tức. Rất nhẹ và hiệu quả.
1717
// @description:zh-CN 几乎立即自动跳过 YouTube 广告。非常轻量且高效。

scripts/Diep.io Improvements/script.user.js scripts/Diep-io-Improvements/script.user.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// @grant GM_deleteValue
1818
// @license MIT
1919
// @noframes
20-
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Diep.io%20Improvements
20+
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Diep-io-Improvements
2121
// ==/UserScript==
2222

2323
var diepIO

scripts/Keyboard Shortcuts For Google Translate/script.user.js scripts/Keyboard-Shortcuts-For-Google-Translate/script.user.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// @grant none
1313
// @license MIT
1414
// @noframes
15-
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Keyboard%20Shortcuts%20For%20Google%20Translate
15+
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Keyboard-Shortcuts-For-Google-Translate
1616
// ==/UserScript==
1717

1818
function click(selector) {

scripts/No Fullscreen Dropdown/script.user.js scripts/No-Fullscreen-Dropdown/script.user.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// @license MIT
1010
// @grant none
1111
// @noframes
12-
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/No%20Fullscreen%20Dropdown
12+
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/No-Fullscreen-Dropdown
1313
// ==/UserScript==
1414

1515
window.addEventListener('keydown', (event) => {

watch.ts

+17-10
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,13 @@ import GlobWatcher from 'glob-watcher'
33
import { transpile } from 'typescript'
44
import { join, dirname } from 'path'
55
import { format, resolveConfig } from 'prettier'
6+
import { sync } from 'glob-concat'
67

78
function joinPath(...paths: string[]): string {
89
return join(...paths).replace(/\\/g, '/')
910
}
1011

11-
const endMetaTagRegex: RegExp = /^\/\/ ==\/UserScript==$/m
12-
const tailwindcssMetaRegex: RegExp = /^\/\/ @resource {5}TAILWINDCSS$/m
13-
14-
const watcher = GlobWatcher('scripts/*/script.user.{ts,tsx}', {
15-
events: ['add', 'change']
16-
})
17-
watcher.on('add', watch)
18-
watcher.on('change', watch)
19-
20-
async function watch(path: string, stat: Stats): Promise<void> {
12+
async function handleWatch(path: string, stat: Stats): Promise<void> {
2113
if (!stat.isFile()) return
2214

2315
const code: string = fs.readFileSync(path, 'utf-8')
@@ -69,3 +61,18 @@ async function watch(path: string, stat: Stats): Promise<void> {
6961
)
7062
fs.writeFileSync(devPath, devMeta)
7163
}
64+
65+
const endMetaTagRegex: RegExp = /^\/\/ ==\/UserScript==$/m
66+
const tailwindcssMetaRegex: RegExp = /^\/\/ @resource {5}TAILWINDCSS$/m
67+
68+
const paths: string[] = sync('scripts/*/script.user.{ts,tsx}')
69+
for (const path of paths) {
70+
const stat: Stats = fs.statSync(path)
71+
await handleWatch(path, stat)
72+
}
73+
74+
const watcher = GlobWatcher('scripts/*/script.user.{ts,tsx}', {
75+
events: ['add', 'change']
76+
})
77+
watcher.on('add', handleWatch)
78+
watcher.on('change', handleWatch)

0 commit comments

Comments
 (0)