pake-cli 3.2.15 → 3.2.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- <h4 align="right"><strong>English</strong> | <a href="https://github.com/tw93/Pake/blob/main/README_CN.md">简体中文</a> | <a href="https://github.com/tw93/Pake/blob/main/README_JP.md">日本語</a></h4>
1
+ <h4 align="right"><strong>English</strong> | <a href="README_CN.md">简体中文</a> | <a href="README_JP.md">日本語</a></h4>
2
2
  <p align="center">
3
3
  <img src=https://gw.alipayobjects.com/zos/k/fa/logo-modified.png width=138/>
4
4
  </p>
@@ -26,7 +26,8 @@
26
26
  - 🎐 Nearly 20 times smaller than an Electron package (around 5M!)
27
27
  - 🚀 With Rust Tauri, Pake is much more lightweight and faster than JS-based frameworks.
28
28
  - 📦 Battery-included package — shortcut pass-through, immersive windows, and minimalist customization.
29
- - 👻 Pake is just a simple tool replace the old bundle approach with Tauri (though PWA is good enough).
29
+ - 🖱️ Smart right-click context menus with download support for images, videos, and files.
30
+ - 👻 Pake is just a simple tool — replaces the old bundle approach with Tauri (though PWA is also a good alternative).
30
31
 
31
32
  ## Popular Packages
32
33
 
@@ -141,7 +142,7 @@
141
142
  | <kbd>⌘</kbd> + <kbd>↑</kbd> | <kbd>Ctrl</kbd> + <kbd>↑</kbd> | Auto scroll to top of page |
142
143
  | <kbd>⌘</kbd> + <kbd>↓</kbd> | <kbd>Ctrl</kbd> + <kbd>↓</kbd> | Auto scroll to bottom of page |
143
144
  | <kbd>⌘</kbd> + <kbd>r</kbd> | <kbd>Ctrl</kbd> + <kbd>r</kbd> | Refresh Page |
144
- | <kbd>⌘</kbd> + <kbd>w</kbd> | <kbd>Ctrl</kbd> + <kbd>w</kbd> | Hide window, not quite |
145
+ | <kbd>⌘</kbd> + <kbd>w</kbd> | <kbd>Ctrl</kbd> + <kbd>w</kbd> | Hide window, not quit |
145
146
  | <kbd>⌘</kbd> + <kbd>-</kbd> | <kbd>Ctrl</kbd> + <kbd>-</kbd> | Zoom out the page |
146
147
  | <kbd>⌘</kbd> + <kbd>+</kbd> | <kbd>Ctrl</kbd> + <kbd>+</kbd> | Zoom in the page |
147
148
  | <kbd>⌘</kbd> + <kbd>=</kbd> | <kbd>Ctrl</kbd> + <kbd>=</kbd> | Zoom in the Page |
@@ -153,7 +154,7 @@ In addition, double-click the title bar to switch to full-screen mode. For Mac u
153
154
 
154
155
  ## Before starting
155
156
 
156
- 1. **For beginners**: Play with Popular Packages to find out Pake's capabilities, or try to pack your application with [GitHub Actions](<https://github.com/tw93/Pake/wiki/Online-Compilation-(used-by-ordinary-users)>). Don't hesitate to reach for assistance at [Discussion](https://github.com/tw93/Pake/discussions)!
157
+ 1. **For beginners**: Play with Popular Packages to find out Pake's capabilities, or try to pack your application with [GitHub Actions](docs/github-actions-usage.md). Don't hesitate to reach for assistance at [Discussion](https://github.com/tw93/Pake/discussions)!
157
158
  2. **For developers**: “Command-Line Packaging” supports macOS fully. For Windows/Linux users, it requires some tinkering. [Configure your environment](https://tauri.app/start/prerequisites/) before getting started.
158
159
  3. **For hackers**: For people who are good at both front-end development and Rust, how about customizing your apps' function more with the following [Customized Development](#development)?
159
160
 
@@ -161,10 +162,13 @@ In addition, double-click the title bar to switch to full-screen mode. For Mac u
161
162
 
162
163
  ![Pake](https://raw.githubusercontent.com/tw93/static/main/pake/pake.gif)
163
164
 
164
- **Pake provides a command line tool, making the flow of package customization quicker and easier. See [documentation](./bin/README.md) for more information.**
165
+ **Pake provides a command line tool, making the flow of package customization quicker and easier. See the [CLI usage guide](docs/cli-usage.md) for more information.**
165
166
 
166
167
  ```bash
167
- # Install with npm
168
+ # Recommended (pnpm)
169
+ pnpm install -g pake-cli
170
+
171
+ # Alternative (npm)
168
172
  npm install -g pake-cli
169
173
 
170
174
  # Command usage
@@ -174,31 +178,31 @@ pake url [OPTIONS]...
174
178
  pake https://weekly.tw93.fun --name Weekly --hide-title-bar
175
179
  ```
176
180
 
177
- If you are new to the command line, you can compile packages online with _GitHub Actions_. See the [Tutorial](<https://github.com/tw93/Pake/wiki/Online-Compilation-(used-by-ordinary-users)>) for more information.
181
+ If you are new to the command line, you can compile packages online with _GitHub Actions_. See our [documentation](#documentation) for detailed guides.
178
182
 
179
183
  ## Development
180
184
 
181
- Prepare your environment before starting. Make sure you have Rust `>=1.89` and Node `>=22` (e.g., `22.11.0`) installed on your computer. _Note: Older versions (Rust ≥1.78, Node ≥16) may also work but latest stable versions are recommended._ For installation guidance, see [Tauri documentation](https://tauri.app/start/prerequisites/).
185
+ Prepare your environment before starting. Make sure you have Rust `>=1.89` and Node `>=18` (e.g., `22.11.0`) installed on your computer. _Note: Latest stable versions are recommended._ For installation guidance, see [Tauri documentation](https://tauri.app/start/prerequisites/).
182
186
 
183
187
  If you are unfamiliar with these, it is better to try out the above tool to pack with one click.
184
188
 
185
189
  ```sh
186
- # Install Dependencies
187
- npm i
190
+ # Install dependencies
191
+ pnpm i
188
192
 
189
- # Local development [Right-click to open debug mode.]
190
- npm run dev
193
+ # Local development (right-click to open debug mode)
194
+ pnpm run dev
191
195
 
192
- # Pack application
193
- npm run build
196
+ # Build application
197
+ pnpm run build
194
198
  ```
195
199
 
196
- ## Advanced Usage
200
+ ## Documentation
197
201
 
198
- 1. You can refer to the [codebase structure](https://github.com/tw93/Pake/wiki/Description-of-Pake's-code-structure) before working on Pake, which will help you much in development.
199
- 2. Modify the `url` and `productName` fields in the `pake.json` file under the src-tauri directory, the "domain" field in the `tauri.config.json` file needs to be modified synchronously, as well as the `icon` and `identifier` fields in the `tauri.xxx.conf.json` file. You can select an `icon` from the `icons` directory or download one from [macOSicons](https://macosicons.com/#/) to match your product needs.
200
- 3. For configurations on window properties, you can modify the `pake.json` file to change the value of `width`, `height`, `fullscreen` (or not), `resizable` (or not), `hide_on_close` (hide window on close instead of exiting) of the `windows` property. To adapt to the immersive header on Mac, change `hideTitleBar` to `true`, look for the `Header` element, and add the `padding-top` property.
201
- 4. For advanced usages such as style rewriting, advertisement removal, JS injection, container message communication, and user-defined shortcut keys, see [Advanced Usage of Pake](https://github.com/tw93/Pake/wiki/Advanced-Usage-of-Pake).
202
+ - **[CLI Usage](docs/cli-usage.md)** ([中文](docs/cli-usage_CN.md)) - Command-line interface reference
203
+ - **[Advanced Usage](docs/advanced-usage.md)** ([中文](docs/advanced-usage_CN.md)) - Customization and advanced features
204
+ - **[GitHub Actions](docs/github-actions-usage.md)** ([中文](docs/github-actions-usage_CN.md)) - Build apps online
205
+ - **[Contributing](CONTRIBUTING.md)** - How to contribute to development
202
206
 
203
207
  ## Developers
204
208
 
@@ -206,313 +210,326 @@ Pake's development can not be without these Hackers. They contributed a lot of c
206
210
 
207
211
  <!-- readme: contributors -start -->
208
212
  <table>
209
- <tr>
210
- <td align="center">
211
- <a href="https://github.com/tw93">
212
- <img src="https://avatars.githubusercontent.com/u/8736212?v=4" width="90;" alt="tw93"/>
213
- <br />
214
- <sub><b>Tw93</b></sub>
215
- </a>
216
- </td>
217
- <td align="center">
218
- <a href="https://github.com/Tlntin">
219
- <img src="https://avatars.githubusercontent.com/u/28218658?v=4" width="90;" alt="Tlntin"/>
220
- <br />
221
- <sub><b>Tlntin</b></sub>
222
- </a>
223
- </td>
224
- <td align="center">
225
- <a href="https://github.com/jeasonnow">
226
- <img src="https://avatars.githubusercontent.com/u/16950207?v=4" width="90;" alt="jeasonnow"/>
227
- <br />
228
- <sub><b>Santree</b></sub>
229
- </a>
230
- </td>
231
- <td align="center">
232
- <a href="https://github.com/pan93412">
233
- <img src="https://avatars.githubusercontent.com/u/28441561?v=4" width="90;" alt="pan93412"/>
234
- <br />
235
- <sub><b>Pan93412</b></sub>
236
- </a>
237
- </td>
238
- <td align="center">
239
- <a href="https://github.com/stone-w4tch3r">
240
- <img src="https://avatars.githubusercontent.com/u/100294019?v=4" width="90;" alt="stone-w4tch3r"/>
241
- <br />
242
- <sub><b>Данил Бизимов</b></sub>
243
- </a>
244
- </td>
245
- <td align="center">
246
- <a href="https://github.com/wanghanzhen">
247
- <img src="https://avatars.githubusercontent.com/u/25301012?v=4" width="90;" alt="wanghanzhen"/>
248
- <br />
249
- <sub><b>Volare</b></sub>
250
- </a>
251
- </td>
252
- <td align="center">
253
- <a href="https://github.com/liby">
254
- <img src="https://avatars.githubusercontent.com/u/38807139?v=4" width="90;" alt="liby"/>
255
- <br />
256
- <sub><b>Bryan Lee</b></sub>
257
- </a>
258
- </td></tr>
259
- <tr>
260
- <td align="center">
261
- <a href="https://github.com/essesoul">
262
- <img src="https://avatars.githubusercontent.com/u/58624474?v=4" width="90;" alt="essesoul"/>
263
- <br />
264
- <sub><b>Essesoul</b></sub>
265
- </a>
266
- </td>
267
- <td align="center">
268
- <a href="https://github.com/YangguangZhou">
269
- <img src="https://avatars.githubusercontent.com/u/61733195?v=4" width="90;" alt="YangguangZhou"/>
270
- <br />
271
- <sub><b>Jerry Zhou</b></sub>
272
- </a>
273
- </td>
274
- <td align="center">
275
- <a href="https://github.com/AielloChan">
276
- <img src="https://avatars.githubusercontent.com/u/7900765?v=4" width="90;" alt="AielloChan"/>
277
- <br />
278
- <sub><b>Aiello</b></sub>
279
- </a>
280
- </td>
281
- <td align="center">
282
- <a href="https://github.com/m1911star">
283
- <img src="https://avatars.githubusercontent.com/u/4948120?v=4" width="90;" alt="m1911star"/>
284
- <br />
285
- <sub><b>Horus</b></sub>
286
- </a>
287
- </td>
288
- <td align="center">
289
- <a href="https://github.com/Pake-Actions">
290
- <img src="https://avatars.githubusercontent.com/u/126550811?v=4" width="90;" alt="Pake-Actions"/>
291
- <br />
292
- <sub><b>Pake Actions</b></sub>
293
- </a>
294
- </td>
295
- <td align="center">
296
- <a href="https://github.com/GoodbyeNJN">
297
- <img src="https://avatars.githubusercontent.com/u/6856639?v=4" width="90;" alt="GoodbyeNJN"/>
298
- <br />
299
- <sub><b>GoodbyeNJN</b></sub>
300
- </a>
301
- </td>
302
- <td align="center">
303
- <a href="https://github.com/kittizz">
304
- <img src="https://avatars.githubusercontent.com/u/62899732?v=4" width="90;" alt="kittizz"/>
305
- <br />
306
- <sub><b>Kittizz</b></sub>
307
- </a>
308
- </td></tr>
309
- <tr>
310
- <td align="center">
311
- <a href="https://github.com/mattbajorek">
312
- <img src="https://avatars.githubusercontent.com/u/17235301?v=4" width="90;" alt="mattbajorek"/>
313
- <br />
314
- <sub><b>Matt Bajorek</b></sub>
315
- </a>
316
- </td>
317
- <td align="center">
318
- <a href="https://github.com/vaddisrinivas">
319
- <img src="https://avatars.githubusercontent.com/u/38348871?v=4" width="90;" alt="vaddisrinivas"/>
320
- <br />
321
- <sub><b>Srinivas Vaddi</b></sub>
322
- </a>
323
- </td>
324
- <td align="center">
325
- <a href="https://github.com/QingZ11">
326
- <img src="https://avatars.githubusercontent.com/u/38887077?v=4" width="90;" alt="QingZ11"/>
327
- <br />
328
- <sub><b>Steam</b></sub>
329
- </a>
330
- </td>
331
- <td align="center">
332
- <a href="https://github.com/Tianj0o">
333
- <img src="https://avatars.githubusercontent.com/u/68584284?v=4" width="90;" alt="Tianj0o"/>
334
- <br />
335
- <sub><b>Qitianjia</b></sub>
336
- </a>
337
- </td>
338
- <td align="center">
339
- <a href="https://github.com/xinyii">
340
- <img src="https://avatars.githubusercontent.com/u/17895104?v=4" width="90;" alt="xinyii"/>
341
- <br />
342
- <sub><b>Yi Xin</b></sub>
343
- </a>
344
- </td>
345
- <td align="center">
346
- <a href="https://github.com/g1eny0ung">
347
- <img src="https://avatars.githubusercontent.com/u/15034155?v=4" width="90;" alt="g1eny0ung"/>
348
- <br />
349
- <sub><b>Yue Yang</b></sub>
350
- </a>
351
- </td>
352
- <td align="center">
353
- <a href="https://github.com/lkieryan">
354
- <img src="https://avatars.githubusercontent.com/u/187804088?v=4" width="90;" alt="lkieryan"/>
355
- <br />
356
- <sub><b>Kieran</b></sub>
357
- </a>
358
- </td></tr>
359
- <tr>
360
- <td align="center">
361
- <a href="https://github.com/exposir">
362
- <img src="https://avatars.githubusercontent.com/u/33340988?v=4" width="90;" alt="exposir"/>
363
- <br />
364
- <sub><b>孟世博</b></sub>
365
- </a>
366
- </td>
367
- <td align="center">
368
- <a href="https://github.com/2nthony">
369
- <img src="https://avatars.githubusercontent.com/u/19513289?v=4" width="90;" alt="2nthony"/>
370
- <br />
371
- <sub><b>2nthony</b></sub>
372
- </a>
373
- </td>
374
- <td align="center">
375
- <a href="https://github.com/ACGNnsj">
376
- <img src="https://avatars.githubusercontent.com/u/22112141?v=4" width="90;" alt="ACGNnsj"/>
377
- <br />
378
- <sub><b>Null</b></sub>
379
- </a>
380
- </td>
381
- <td align="center">
382
- <a href="https://github.com/imabutahersiddik">
383
- <img src="https://avatars.githubusercontent.com/u/138387257?v=4" width="90;" alt="imabutahersiddik"/>
384
- <br />
385
- <sub><b>Abu Taher Siddik</b></sub>
386
- </a>
387
- </td>
388
- <td align="center">
389
- <a href="https://github.com/kidylee">
390
- <img src="https://avatars.githubusercontent.com/u/841310?v=4" width="90;" alt="kidylee"/>
391
- <br />
392
- <sub><b>An Li</b></sub>
393
- </a>
394
- </td>
395
- <td align="center">
396
- <a href="https://github.com/nekomeowww">
397
- <img src="https://avatars.githubusercontent.com/u/11081491?v=4" width="90;" alt="nekomeowww"/>
398
- <br />
399
- <sub><b>Ayaka Neko</b></sub>
400
- </a>
401
- </td>
402
- <td align="center">
403
- <a href="https://github.com/turkyden">
404
- <img src="https://avatars.githubusercontent.com/u/24560160?v=4" width="90;" alt="turkyden"/>
405
- <br />
406
- <sub><b>Dengju Deng</b></sub>
407
- </a>
408
- </td></tr>
409
- <tr>
410
- <td align="center">
411
- <a href="https://github.com/Fechin">
412
- <img src="https://avatars.githubusercontent.com/u/2541482?v=4" width="90;" alt="Fechin"/>
413
- <br />
414
- <sub><b>Fechin</b></sub>
415
- </a>
416
- </td>
417
- <td align="center">
418
- <a href="https://github.com/ImgBotApp">
419
- <img src="https://avatars.githubusercontent.com/u/31427850?v=4" width="90;" alt="ImgBotApp"/>
420
- <br />
421
- <sub><b>Imgbot</b></sub>
422
- </a>
423
- </td>
424
- <td align="center">
425
- <a href="https://github.com/droid-Q">
426
- <img src="https://avatars.githubusercontent.com/u/708277?v=4" width="90;" alt="droid-Q"/>
427
- <br />
428
- <sub><b>Jiaqi Gu</b></sub>
429
- </a>
430
- </td>
431
- <td align="center">
432
- <a href="https://github.com/Milo123459">
433
- <img src="https://avatars.githubusercontent.com/u/50248166?v=4" width="90;" alt="Milo123459"/>
434
- <br />
435
- <sub><b>Milo</b></sub>
436
- </a>
437
- </td>
438
- <td align="center">
439
- <a href="https://github.com/princemaple">
440
- <img src="https://avatars.githubusercontent.com/u/1329716?v=4" width="90;" alt="princemaple"/>
441
- <br />
442
- <sub><b>Po Chen</b></sub>
443
- </a>
444
- </td>
445
- <td align="center">
446
- <a href="https://github.com/beautifulrem">
447
- <img src="https://avatars.githubusercontent.com/u/98527099?v=4" width="90;" alt="beautifulrem"/>
448
- <br />
449
- <sub><b>Xie Ruiqi</b></sub>
450
- </a>
451
- </td>
452
- <td align="center">
453
- <a href="https://github.com/bocanhcam">
454
- <img src="https://avatars.githubusercontent.com/u/35592955?v=4" width="90;" alt="bocanhcam"/>
455
- <br />
456
- <sub><b>Null</b></sub>
457
- </a>
458
- </td></tr>
459
- <tr>
460
- <td align="center">
461
- <a href="https://github.com/geekvest">
462
- <img src="https://avatars.githubusercontent.com/u/126322776?v=4" width="90;" alt="geekvest"/>
463
- <br />
464
- <sub><b>Null</b></sub>
465
- </a>
466
- </td>
467
- <td align="center">
468
- <a href="https://github.com/houhoz">
469
- <img src="https://avatars.githubusercontent.com/u/19684376?v=4" width="90;" alt="houhoz"/>
470
- <br />
471
- <sub><b>Hyzhao</b></sub>
472
- </a>
473
- </td>
474
- <td align="center">
475
- <a href="https://github.com/lakca">
476
- <img src="https://avatars.githubusercontent.com/u/16255922?v=4" width="90;" alt="lakca"/>
477
- <br />
478
- <sub><b>Null</b></sub>
479
- </a>
480
- </td>
481
- <td align="center">
482
- <a href="https://github.com/liudonghua123">
483
- <img src="https://avatars.githubusercontent.com/u/2276718?v=4" width="90;" alt="liudonghua123"/>
484
- <br />
485
- <sub><b>Liudonghua</b></sub>
486
- </a>
487
- </td>
488
- <td align="center">
489
- <a href="https://github.com/liusishan">
490
- <img src="https://avatars.githubusercontent.com/u/33129823?v=4" width="90;" alt="liusishan"/>
491
- <br />
492
- <sub><b>Liusishan</b></sub>
493
- </a>
494
- </td>
495
- <td align="center">
496
- <a href="https://github.com/piaoyidage">
497
- <img src="https://avatars.githubusercontent.com/u/5135405?v=4" width="90;" alt="piaoyidage"/>
498
- <br />
499
- <sub><b>Ranger</b></sub>
500
- </a>
501
- </td>
502
- <td align="center">
503
- <a href="https://github.com/hetz">
504
- <img src="https://avatars.githubusercontent.com/u/820141?v=4" width="90;" alt="hetz"/>
505
- <br />
506
- <sub><b>贺天卓</b></sub>
507
- </a>
508
- </td></tr>
213
+ <tbody>
214
+ <tr>
215
+ <td align="center">
216
+ <a href="https://github.com/tw93">
217
+ <img src="https://avatars.githubusercontent.com/u/8736212?v=4" width="90;" alt="tw93"/>
218
+ <br />
219
+ <sub><b>Tw93</b></sub>
220
+ </a>
221
+ </td>
222
+ <td align="center">
223
+ <a href="https://github.com/Tlntin">
224
+ <img src="https://avatars.githubusercontent.com/u/28218658?v=4" width="90;" alt="Tlntin"/>
225
+ <br />
226
+ <sub><b>Tlntin</b></sub>
227
+ </a>
228
+ </td>
229
+ <td align="center">
230
+ <a href="https://github.com/jeasonnow">
231
+ <img src="https://avatars.githubusercontent.com/u/16950207?v=4" width="90;" alt="jeasonnow"/>
232
+ <br />
233
+ <sub><b>Santree</b></sub>
234
+ </a>
235
+ </td>
236
+ <td align="center">
237
+ <a href="https://github.com/pan93412">
238
+ <img src="https://avatars.githubusercontent.com/u/28441561?v=4" width="90;" alt="pan93412"/>
239
+ <br />
240
+ <sub><b>Pan93412</b></sub>
241
+ </a>
242
+ </td>
243
+ <td align="center">
244
+ <a href="https://github.com/stone-w4tch3r">
245
+ <img src="https://avatars.githubusercontent.com/u/100294019?v=4" width="90;" alt="stone-w4tch3r"/>
246
+ <br />
247
+ <sub><b>Данил Бизимов</b></sub>
248
+ </a>
249
+ </td>
250
+ <td align="center">
251
+ <a href="https://github.com/wanghanzhen">
252
+ <img src="https://avatars.githubusercontent.com/u/25301012?v=4" width="90;" alt="wanghanzhen"/>
253
+ <br />
254
+ <sub><b>Volare</b></sub>
255
+ </a>
256
+ </td>
257
+ <td align="center">
258
+ <a href="https://github.com/liby">
259
+ <img src="https://avatars.githubusercontent.com/u/38807139?v=4" width="90;" alt="liby"/>
260
+ <br />
261
+ <sub><b>Bryan Lee</b></sub>
262
+ </a>
263
+ </td>
264
+ </tr>
265
+ <tr>
266
+ <td align="center">
267
+ <a href="https://github.com/essesoul">
268
+ <img src="https://avatars.githubusercontent.com/u/58624474?v=4" width="90;" alt="essesoul"/>
269
+ <br />
270
+ <sub><b>Essesoul</b></sub>
271
+ </a>
272
+ </td>
273
+ <td align="center">
274
+ <a href="https://github.com/YangguangZhou">
275
+ <img src="https://avatars.githubusercontent.com/u/61733195?v=4" width="90;" alt="YangguangZhou"/>
276
+ <br />
277
+ <sub><b>Jerry Zhou</b></sub>
278
+ </a>
279
+ </td>
280
+ <td align="center">
281
+ <a href="https://github.com/AielloChan">
282
+ <img src="https://avatars.githubusercontent.com/u/7900765?v=4" width="90;" alt="AielloChan"/>
283
+ <br />
284
+ <sub><b>Aiello</b></sub>
285
+ </a>
286
+ </td>
287
+ <td align="center">
288
+ <a href="https://github.com/m1911star">
289
+ <img src="https://avatars.githubusercontent.com/u/4948120?v=4" width="90;" alt="m1911star"/>
290
+ <br />
291
+ <sub><b>Horus</b></sub>
292
+ </a>
293
+ </td>
294
+ <td align="center">
295
+ <a href="https://github.com/Pake-Actions">
296
+ <img src="https://avatars.githubusercontent.com/u/126550811?v=4" width="90;" alt="Pake-Actions"/>
297
+ <br />
298
+ <sub><b>Pake Actions</b></sub>
299
+ </a>
300
+ </td>
301
+ <td align="center">
302
+ <a href="https://github.com/GoodbyeNJN">
303
+ <img src="https://avatars.githubusercontent.com/u/6856639?v=4" width="90;" alt="GoodbyeNJN"/>
304
+ <br />
305
+ <sub><b>GoodbyeNJN</b></sub>
306
+ </a>
307
+ </td>
308
+ <td align="center">
309
+ <a href="https://github.com/kittizz">
310
+ <img src="https://avatars.githubusercontent.com/u/62899732?v=4" width="90;" alt="kittizz"/>
311
+ <br />
312
+ <sub><b>Kittizz</b></sub>
313
+ </a>
314
+ </td>
315
+ </tr>
316
+ <tr>
317
+ <td align="center">
318
+ <a href="https://github.com/mattbajorek">
319
+ <img src="https://avatars.githubusercontent.com/u/17235301?v=4" width="90;" alt="mattbajorek"/>
320
+ <br />
321
+ <sub><b>Matt Bajorek</b></sub>
322
+ </a>
323
+ </td>
324
+ <td align="center">
325
+ <a href="https://github.com/vaddisrinivas">
326
+ <img src="https://avatars.githubusercontent.com/u/38348871?v=4" width="90;" alt="vaddisrinivas"/>
327
+ <br />
328
+ <sub><b>Srinivas Vaddi</b></sub>
329
+ </a>
330
+ </td>
331
+ <td align="center">
332
+ <a href="https://github.com/QingZ11">
333
+ <img src="https://avatars.githubusercontent.com/u/38887077?v=4" width="90;" alt="QingZ11"/>
334
+ <br />
335
+ <sub><b>Steam</b></sub>
336
+ </a>
337
+ </td>
338
+ <td align="center">
339
+ <a href="https://github.com/Tianj0o">
340
+ <img src="https://avatars.githubusercontent.com/u/68584284?v=4" width="90;" alt="Tianj0o"/>
341
+ <br />
342
+ <sub><b>Qitianjia</b></sub>
343
+ </a>
344
+ </td>
345
+ <td align="center">
346
+ <a href="https://github.com/xinyii">
347
+ <img src="https://avatars.githubusercontent.com/u/17895104?v=4" width="90;" alt="xinyii"/>
348
+ <br />
349
+ <sub><b>Yi Xin</b></sub>
350
+ </a>
351
+ </td>
352
+ <td align="center">
353
+ <a href="https://github.com/g1eny0ung">
354
+ <img src="https://avatars.githubusercontent.com/u/15034155?v=4" width="90;" alt="g1eny0ung"/>
355
+ <br />
356
+ <sub><b>Yue Yang</b></sub>
357
+ </a>
358
+ </td>
359
+ <td align="center">
360
+ <a href="https://github.com/lkieryan">
361
+ <img src="https://avatars.githubusercontent.com/u/187804088?v=4" width="90;" alt="lkieryan"/>
362
+ <br />
363
+ <sub><b>Kieran</b></sub>
364
+ </a>
365
+ </td>
366
+ </tr>
367
+ <tr>
368
+ <td align="center">
369
+ <a href="https://github.com/exposir">
370
+ <img src="https://avatars.githubusercontent.com/u/33340988?v=4" width="90;" alt="exposir"/>
371
+ <br />
372
+ <sub><b>孟世博</b></sub>
373
+ </a>
374
+ </td>
375
+ <td align="center">
376
+ <a href="https://github.com/2nthony">
377
+ <img src="https://avatars.githubusercontent.com/u/19513289?v=4" width="90;" alt="2nthony"/>
378
+ <br />
379
+ <sub><b>2nthony</b></sub>
380
+ </a>
381
+ </td>
382
+ <td align="center">
383
+ <a href="https://github.com/ACGNnsj">
384
+ <img src="https://avatars.githubusercontent.com/u/22112141?v=4" width="90;" alt="ACGNnsj"/>
385
+ <br />
386
+ <sub><b>Null</b></sub>
387
+ </a>
388
+ </td>
389
+ <td align="center">
390
+ <a href="https://github.com/imabutahersiddik">
391
+ <img src="https://avatars.githubusercontent.com/u/138387257?v=4" width="90;" alt="imabutahersiddik"/>
392
+ <br />
393
+ <sub><b>Abu Taher Siddik</b></sub>
394
+ </a>
395
+ </td>
396
+ <td align="center">
397
+ <a href="https://github.com/kidylee">
398
+ <img src="https://avatars.githubusercontent.com/u/841310?v=4" width="90;" alt="kidylee"/>
399
+ <br />
400
+ <sub><b>An Li</b></sub>
401
+ </a>
402
+ </td>
403
+ <td align="center">
404
+ <a href="https://github.com/nekomeowww">
405
+ <img src="https://avatars.githubusercontent.com/u/11081491?v=4" width="90;" alt="nekomeowww"/>
406
+ <br />
407
+ <sub><b>Ayaka Neko</b></sub>
408
+ </a>
409
+ </td>
410
+ <td align="center">
411
+ <a href="https://github.com/turkyden">
412
+ <img src="https://avatars.githubusercontent.com/u/24560160?v=4" width="90;" alt="turkyden"/>
413
+ <br />
414
+ <sub><b>Dengju Deng</b></sub>
415
+ </a>
416
+ </td>
417
+ </tr>
418
+ <tr>
419
+ <td align="center">
420
+ <a href="https://github.com/fvn-elmy">
421
+ <img src="https://avatars.githubusercontent.com/u/71275745?v=4" width="90;" alt="fvn-elmy"/>
422
+ <br />
423
+ <sub><b>Fabien</b></sub>
424
+ </a>
425
+ </td>
426
+ <td align="center">
427
+ <a href="https://github.com/Fechin">
428
+ <img src="https://avatars.githubusercontent.com/u/2541482?v=4" width="90;" alt="Fechin"/>
429
+ <br />
430
+ <sub><b>Fechin</b></sub>
431
+ </a>
432
+ </td>
433
+ <td align="center">
434
+ <a href="https://github.com/ImgBotApp">
435
+ <img src="https://avatars.githubusercontent.com/u/31427850?v=4" width="90;" alt="ImgBotApp"/>
436
+ <br />
437
+ <sub><b>Imgbot</b></sub>
438
+ </a>
439
+ </td>
440
+ <td align="center">
441
+ <a href="https://github.com/droid-Q">
442
+ <img src="https://avatars.githubusercontent.com/u/708277?v=4" width="90;" alt="droid-Q"/>
443
+ <br />
444
+ <sub><b>Jiaqi Gu</b></sub>
445
+ </a>
446
+ </td>
447
+ <td align="center">
448
+ <a href="https://github.com/Milo123459">
449
+ <img src="https://avatars.githubusercontent.com/u/50248166?v=4" width="90;" alt="Milo123459"/>
450
+ <br />
451
+ <sub><b>Milo</b></sub>
452
+ </a>
453
+ </td>
454
+ <td align="center">
455
+ <a href="https://github.com/princemaple">
456
+ <img src="https://avatars.githubusercontent.com/u/1329716?v=4" width="90;" alt="princemaple"/>
457
+ <br />
458
+ <sub><b>Po Chen</b></sub>
459
+ </a>
460
+ </td>
461
+ <td align="center">
462
+ <a href="https://github.com/beautifulrem">
463
+ <img src="https://avatars.githubusercontent.com/u/98527099?v=4" width="90;" alt="beautifulrem"/>
464
+ <br />
465
+ <sub><b>Xie Ruiqi</b></sub>
466
+ </a>
467
+ </td>
468
+ </tr>
469
+ <tr>
470
+ <td align="center">
471
+ <a href="https://github.com/bocanhcam">
472
+ <img src="https://avatars.githubusercontent.com/u/35592955?v=4" width="90;" alt="bocanhcam"/>
473
+ <br />
474
+ <sub><b>Null</b></sub>
475
+ </a>
476
+ </td>
477
+ <td align="center">
478
+ <a href="https://github.com/geekvest">
479
+ <img src="https://avatars.githubusercontent.com/u/126322776?v=4" width="90;" alt="geekvest"/>
480
+ <br />
481
+ <sub><b>Null</b></sub>
482
+ </a>
483
+ </td>
484
+ <td align="center">
485
+ <a href="https://github.com/houhoz">
486
+ <img src="https://avatars.githubusercontent.com/u/19684376?v=4" width="90;" alt="houhoz"/>
487
+ <br />
488
+ <sub><b>Hyzhao</b></sub>
489
+ </a>
490
+ </td>
491
+ <td align="center">
492
+ <a href="https://github.com/lakca">
493
+ <img src="https://avatars.githubusercontent.com/u/16255922?v=4" width="90;" alt="lakca"/>
494
+ <br />
495
+ <sub><b>Null</b></sub>
496
+ </a>
497
+ </td>
498
+ <td align="center">
499
+ <a href="https://github.com/liudonghua123">
500
+ <img src="https://avatars.githubusercontent.com/u/2276718?v=4" width="90;" alt="liudonghua123"/>
501
+ <br />
502
+ <sub><b>Liudonghua</b></sub>
503
+ </a>
504
+ </td>
505
+ <td align="center">
506
+ <a href="https://github.com/liusishan">
507
+ <img src="https://avatars.githubusercontent.com/u/33129823?v=4" width="90;" alt="liusishan"/>
508
+ <br />
509
+ <sub><b>Liusishan</b></sub>
510
+ </a>
511
+ </td>
512
+ <td align="center">
513
+ <a href="https://github.com/piaoyidage">
514
+ <img src="https://avatars.githubusercontent.com/u/5135405?v=4" width="90;" alt="piaoyidage"/>
515
+ <br />
516
+ <sub><b>Ranger</b></sub>
517
+ </a>
518
+ </td>
519
+ </tr>
520
+ <tr>
521
+ <td align="center">
522
+ <a href="https://github.com/hetz">
523
+ <img src="https://avatars.githubusercontent.com/u/820141?v=4" width="90;" alt="hetz"/>
524
+ <br />
525
+ <sub><b>贺天卓</b></sub>
526
+ </a>
527
+ </td>
528
+ </tr>
529
+ <tbody>
509
530
  </table>
510
531
  <!-- readme: contributors -end -->
511
532
 
512
- ## Frequently Asked Questions
513
-
514
- 1. Right-clicking on an image element in the page to open the menu and select download image or other events does not work (common in MacOS systems). This issue is due to the MacOS built-in webview not supporting this feature.
515
-
516
533
  ## Support
517
534
 
518
535
  1. I have two cats, TangYuan and Coke. If you think Pake delights your life, you can feed them <a href="https://miaoyan.app/cats.html?name=Pake" target="_blank">some canned food 🥩</a>.