@zenalexa/unicli 0.210.0 → 0.211.2
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/AGENTS.md +21 -7
- package/README.md +680 -83
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +5 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/agents.d.ts +14 -3
- package/dist/commands/agents.d.ts.map +1 -1
- package/dist/commands/agents.js +369 -140
- package/dist/commands/agents.js.map +1 -1
- package/dist/commands/mcp.d.ts +3 -4
- package/dist/commands/mcp.d.ts.map +1 -1
- package/dist/commands/mcp.js +47 -62
- package/dist/commands/mcp.js.map +1 -1
- package/dist/commands/schema.d.ts +12 -0
- package/dist/commands/schema.d.ts.map +1 -0
- package/dist/commands/schema.js +72 -0
- package/dist/commands/schema.js.map +1 -0
- package/dist/commands/search.d.ts +12 -0
- package/dist/commands/search.d.ts.map +1 -0
- package/dist/commands/search.js +47 -0
- package/dist/commands/search.js.map +1 -0
- package/dist/discovery/aliases.d.ts +31 -0
- package/dist/discovery/aliases.d.ts.map +1 -0
- package/dist/discovery/aliases.js +477 -0
- package/dist/discovery/aliases.js.map +1 -0
- package/dist/discovery/loader.d.ts.map +1 -1
- package/dist/discovery/loader.js +25 -0
- package/dist/discovery/loader.js.map +1 -1
- package/dist/discovery/search.d.ts +73 -0
- package/dist/discovery/search.d.ts.map +1 -0
- package/dist/discovery/search.js +355 -0
- package/dist/discovery/search.js.map +1 -0
- package/dist/manifest-compact.txt +15 -0
- package/dist/manifest-search.json +1 -0
- package/dist/manifest.json +433 -244
- package/dist/mcp/oauth.d.ts +33 -0
- package/dist/mcp/oauth.d.ts.map +1 -0
- package/dist/mcp/oauth.js +220 -0
- package/dist/mcp/oauth.js.map +1 -0
- package/dist/mcp/schema.d.ts +65 -0
- package/dist/mcp/schema.d.ts.map +1 -0
- package/dist/mcp/schema.js +136 -0
- package/dist/mcp/schema.js.map +1 -0
- package/dist/mcp/server.d.ts +23 -10
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +350 -182
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/sse-transport.d.ts +34 -0
- package/dist/mcp/sse-transport.d.ts.map +1 -0
- package/dist/mcp/sse-transport.js +182 -0
- package/dist/mcp/sse-transport.js.map +1 -0
- package/dist/mcp/streamable-http.d.ts +64 -0
- package/dist/mcp/streamable-http.d.ts.map +1 -0
- package/dist/mcp/streamable-http.js +312 -0
- package/dist/mcp/streamable-http.js.map +1 -0
- package/dist/permissions/sensitive-paths.js +2 -2
- package/dist/permissions/sensitive-paths.js.map +1 -1
- package/package.json +7 -7
- package/src/adapters/1688/_site.json +9 -0
- package/src/adapters/barchart/_site.json +10 -0
- package/src/adapters/jd/_site.json +9 -0
- package/src/adapters/linkedin/_site.json +10 -0
- package/src/adapters/macos/finder-copy.yaml +40 -0
- package/src/adapters/macos/finder-move.yaml +40 -0
- package/src/adapters/macos/finder-new-folder.yaml +36 -0
- package/src/adapters/macos/safari-history.yaml +23 -0
- package/src/adapters/macos/safari-url.yaml +22 -0
- package/src/adapters/macos/screen-recording.yaml +32 -0
- package/src/adapters/macos/wallpaper.yaml +33 -0
- package/src/adapters/reuters/_site.json +9 -0
- package/src/adapters/sinablog/_site.json +9 -0
- package/src/adapters/smzdm/_site.json +9 -0
- package/src/adapters/weixin/_site.json +9 -0
- package/src/adapters/1688/manifest.yaml +0 -7
- package/src/adapters/barchart/manifest.yaml +0 -8
- package/src/adapters/jd/manifest.yaml +0 -7
- package/src/adapters/linkedin/manifest.yaml +0 -8
- package/src/adapters/reuters/manifest.yaml +0 -7
- package/src/adapters/sinablog/manifest.yaml +0 -7
- package/src/adapters/smzdm/manifest.yaml +0 -7
- package/src/adapters/weixin/manifest.yaml +0 -7
package/dist/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.211.2",
|
|
3
3
|
"sites": {
|
|
4
4
|
"1688": {
|
|
5
5
|
"commands": [
|
|
@@ -9,12 +9,6 @@
|
|
|
9
9
|
"strategy": "cookie",
|
|
10
10
|
"type": "browser"
|
|
11
11
|
},
|
|
12
|
-
{
|
|
13
|
-
"name": "manifest",
|
|
14
|
-
"description": "1688.com — Alibaba wholesale B2B marketplace",
|
|
15
|
-
"strategy": "cookie",
|
|
16
|
-
"type": "web-api"
|
|
17
|
-
},
|
|
18
12
|
{
|
|
19
13
|
"name": "search",
|
|
20
14
|
"description": "Search 1688.com wholesale products",
|
|
@@ -27,7 +21,8 @@
|
|
|
27
21
|
"strategy": "cookie",
|
|
28
22
|
"type": "web-api"
|
|
29
23
|
}
|
|
30
|
-
]
|
|
24
|
+
],
|
|
25
|
+
"category": "shopping"
|
|
31
26
|
},
|
|
32
27
|
"36kr": {
|
|
33
28
|
"commands": [
|
|
@@ -61,7 +56,8 @@
|
|
|
61
56
|
"strategy": "public",
|
|
62
57
|
"type": "web-api"
|
|
63
58
|
}
|
|
64
|
-
]
|
|
59
|
+
],
|
|
60
|
+
"category": "news"
|
|
65
61
|
},
|
|
66
62
|
"adguardhome": {
|
|
67
63
|
"commands": [
|
|
@@ -95,7 +91,8 @@
|
|
|
95
91
|
"strategy": "public",
|
|
96
92
|
"type": "service"
|
|
97
93
|
}
|
|
98
|
-
]
|
|
94
|
+
],
|
|
95
|
+
"category": "other"
|
|
99
96
|
},
|
|
100
97
|
"amazon": {
|
|
101
98
|
"commands": [
|
|
@@ -147,7 +144,8 @@
|
|
|
147
144
|
"strategy": "intercept",
|
|
148
145
|
"type": "web-api"
|
|
149
146
|
}
|
|
150
|
-
]
|
|
147
|
+
],
|
|
148
|
+
"category": "shopping"
|
|
151
149
|
},
|
|
152
150
|
"apple-podcasts": {
|
|
153
151
|
"commands": [
|
|
@@ -169,7 +167,8 @@
|
|
|
169
167
|
"strategy": "public",
|
|
170
168
|
"type": "web-api"
|
|
171
169
|
}
|
|
172
|
-
]
|
|
170
|
+
],
|
|
171
|
+
"category": "audio"
|
|
173
172
|
},
|
|
174
173
|
"arxiv": {
|
|
175
174
|
"commands": [
|
|
@@ -191,7 +190,8 @@
|
|
|
191
190
|
"strategy": "public",
|
|
192
191
|
"type": "web-api"
|
|
193
192
|
}
|
|
194
|
-
]
|
|
193
|
+
],
|
|
194
|
+
"category": "reference"
|
|
195
195
|
},
|
|
196
196
|
"audacity": {
|
|
197
197
|
"commands": [
|
|
@@ -243,7 +243,8 @@
|
|
|
243
243
|
"strategy": "public",
|
|
244
244
|
"type": "desktop"
|
|
245
245
|
}
|
|
246
|
-
]
|
|
246
|
+
],
|
|
247
|
+
"category": "other"
|
|
247
248
|
},
|
|
248
249
|
"autoagent": {
|
|
249
250
|
"commands": [
|
|
@@ -253,7 +254,8 @@
|
|
|
253
254
|
"strategy": "public",
|
|
254
255
|
"type": "bridge"
|
|
255
256
|
}
|
|
256
|
-
]
|
|
257
|
+
],
|
|
258
|
+
"category": "other"
|
|
257
259
|
},
|
|
258
260
|
"aws": {
|
|
259
261
|
"commands": [
|
|
@@ -263,7 +265,8 @@
|
|
|
263
265
|
"strategy": "public",
|
|
264
266
|
"type": "bridge"
|
|
265
267
|
}
|
|
266
|
-
]
|
|
268
|
+
],
|
|
269
|
+
"category": "other"
|
|
267
270
|
},
|
|
268
271
|
"az": {
|
|
269
272
|
"commands": [
|
|
@@ -273,7 +276,8 @@
|
|
|
273
276
|
"strategy": "public",
|
|
274
277
|
"type": "bridge"
|
|
275
278
|
}
|
|
276
|
-
]
|
|
279
|
+
],
|
|
280
|
+
"category": "other"
|
|
277
281
|
},
|
|
278
282
|
"baidu": {
|
|
279
283
|
"commands": [
|
|
@@ -289,7 +293,8 @@
|
|
|
289
293
|
"strategy": "intercept",
|
|
290
294
|
"type": "web-api"
|
|
291
295
|
}
|
|
292
|
-
]
|
|
296
|
+
],
|
|
297
|
+
"category": "other"
|
|
293
298
|
},
|
|
294
299
|
"band": {
|
|
295
300
|
"commands": [
|
|
@@ -317,7 +322,8 @@
|
|
|
317
322
|
"strategy": "intercept",
|
|
318
323
|
"type": "web-api"
|
|
319
324
|
}
|
|
320
|
-
]
|
|
325
|
+
],
|
|
326
|
+
"category": "social"
|
|
321
327
|
},
|
|
322
328
|
"barchart": {
|
|
323
329
|
"commands": [
|
|
@@ -333,12 +339,6 @@
|
|
|
333
339
|
"strategy": "cookie",
|
|
334
340
|
"type": "web-api"
|
|
335
341
|
},
|
|
336
|
-
{
|
|
337
|
-
"name": "manifest",
|
|
338
|
-
"description": "Barchart — financial data, options, and market analytics",
|
|
339
|
-
"strategy": "cookie",
|
|
340
|
-
"type": "web-api"
|
|
341
|
-
},
|
|
342
342
|
{
|
|
343
343
|
"name": "options",
|
|
344
344
|
"description": "Options chain for a symbol (strike, bid, ask, volume, OI)",
|
|
@@ -351,7 +351,8 @@
|
|
|
351
351
|
"strategy": "cookie",
|
|
352
352
|
"type": "web-api"
|
|
353
353
|
}
|
|
354
|
-
]
|
|
354
|
+
],
|
|
355
|
+
"category": "finance"
|
|
355
356
|
},
|
|
356
357
|
"bbc": {
|
|
357
358
|
"commands": [
|
|
@@ -379,7 +380,8 @@
|
|
|
379
380
|
"strategy": "public",
|
|
380
381
|
"type": "web-api"
|
|
381
382
|
}
|
|
382
|
-
]
|
|
383
|
+
],
|
|
384
|
+
"category": "news"
|
|
383
385
|
},
|
|
384
386
|
"bilibili": {
|
|
385
387
|
"commands": [
|
|
@@ -485,7 +487,8 @@
|
|
|
485
487
|
"strategy": "cookie",
|
|
486
488
|
"type": "web-api"
|
|
487
489
|
}
|
|
488
|
-
]
|
|
490
|
+
],
|
|
491
|
+
"category": "video"
|
|
489
492
|
},
|
|
490
493
|
"binance": {
|
|
491
494
|
"commands": [
|
|
@@ -507,7 +510,8 @@
|
|
|
507
510
|
"strategy": "public",
|
|
508
511
|
"type": "web-api"
|
|
509
512
|
}
|
|
510
|
-
]
|
|
513
|
+
],
|
|
514
|
+
"category": "finance"
|
|
511
515
|
},
|
|
512
516
|
"blender": {
|
|
513
517
|
"commands": [
|
|
@@ -589,7 +593,8 @@
|
|
|
589
593
|
"strategy": "public",
|
|
590
594
|
"type": "desktop"
|
|
591
595
|
}
|
|
592
|
-
]
|
|
596
|
+
],
|
|
597
|
+
"category": "desktop"
|
|
593
598
|
},
|
|
594
599
|
"bloomberg": {
|
|
595
600
|
"commands": [
|
|
@@ -653,7 +658,8 @@
|
|
|
653
658
|
"strategy": "public",
|
|
654
659
|
"type": "web-api"
|
|
655
660
|
}
|
|
656
|
-
]
|
|
661
|
+
],
|
|
662
|
+
"category": "news"
|
|
657
663
|
},
|
|
658
664
|
"bluesky": {
|
|
659
665
|
"commands": [
|
|
@@ -729,7 +735,8 @@
|
|
|
729
735
|
"strategy": "public",
|
|
730
736
|
"type": "web-api"
|
|
731
737
|
}
|
|
732
|
-
]
|
|
738
|
+
],
|
|
739
|
+
"category": "social"
|
|
733
740
|
},
|
|
734
741
|
"boss": {
|
|
735
742
|
"commands": [
|
|
@@ -817,7 +824,8 @@
|
|
|
817
824
|
"strategy": "intercept",
|
|
818
825
|
"type": "web-api"
|
|
819
826
|
}
|
|
820
|
-
]
|
|
827
|
+
],
|
|
828
|
+
"category": "jobs"
|
|
821
829
|
},
|
|
822
830
|
"chaoxing": {
|
|
823
831
|
"commands": [
|
|
@@ -833,7 +841,8 @@
|
|
|
833
841
|
"strategy": "intercept",
|
|
834
842
|
"type": "web-api"
|
|
835
843
|
}
|
|
836
|
-
]
|
|
844
|
+
],
|
|
845
|
+
"category": "reference"
|
|
837
846
|
},
|
|
838
847
|
"chrome": {
|
|
839
848
|
"commands": [
|
|
@@ -849,7 +858,8 @@
|
|
|
849
858
|
"strategy": "public",
|
|
850
859
|
"type": "desktop"
|
|
851
860
|
}
|
|
852
|
-
]
|
|
861
|
+
],
|
|
862
|
+
"category": "other"
|
|
853
863
|
},
|
|
854
864
|
"claude-code": {
|
|
855
865
|
"commands": [
|
|
@@ -859,7 +869,8 @@
|
|
|
859
869
|
"strategy": "public",
|
|
860
870
|
"type": "bridge"
|
|
861
871
|
}
|
|
862
|
-
]
|
|
872
|
+
],
|
|
873
|
+
"category": "other"
|
|
863
874
|
},
|
|
864
875
|
"cloudcompare": {
|
|
865
876
|
"commands": [
|
|
@@ -887,7 +898,8 @@
|
|
|
887
898
|
"strategy": "public",
|
|
888
899
|
"type": "desktop"
|
|
889
900
|
}
|
|
890
|
-
]
|
|
901
|
+
],
|
|
902
|
+
"category": "other"
|
|
891
903
|
},
|
|
892
904
|
"cnki": {
|
|
893
905
|
"commands": [
|
|
@@ -897,7 +909,8 @@
|
|
|
897
909
|
"strategy": "public",
|
|
898
910
|
"type": "web-api"
|
|
899
911
|
}
|
|
900
|
-
]
|
|
912
|
+
],
|
|
913
|
+
"category": "reference"
|
|
901
914
|
},
|
|
902
915
|
"cnn": {
|
|
903
916
|
"commands": [
|
|
@@ -913,7 +926,8 @@
|
|
|
913
926
|
"strategy": "public",
|
|
914
927
|
"type": "web-api"
|
|
915
928
|
}
|
|
916
|
-
]
|
|
929
|
+
],
|
|
930
|
+
"category": "news"
|
|
917
931
|
},
|
|
918
932
|
"cocoapods": {
|
|
919
933
|
"commands": [
|
|
@@ -929,7 +943,8 @@
|
|
|
929
943
|
"strategy": "public",
|
|
930
944
|
"type": "web-api"
|
|
931
945
|
}
|
|
932
|
-
]
|
|
946
|
+
],
|
|
947
|
+
"category": "dev"
|
|
933
948
|
},
|
|
934
949
|
"codex": {
|
|
935
950
|
"commands": [
|
|
@@ -939,7 +954,8 @@
|
|
|
939
954
|
"strategy": "public",
|
|
940
955
|
"type": "web-api"
|
|
941
956
|
}
|
|
942
|
-
]
|
|
957
|
+
],
|
|
958
|
+
"category": "other"
|
|
943
959
|
},
|
|
944
960
|
"codex-cli": {
|
|
945
961
|
"commands": [
|
|
@@ -949,7 +965,8 @@
|
|
|
949
965
|
"strategy": "public",
|
|
950
966
|
"type": "bridge"
|
|
951
967
|
}
|
|
952
|
-
]
|
|
968
|
+
],
|
|
969
|
+
"category": "other"
|
|
953
970
|
},
|
|
954
971
|
"coinbase": {
|
|
955
972
|
"commands": [
|
|
@@ -965,7 +982,8 @@
|
|
|
965
982
|
"strategy": "public",
|
|
966
983
|
"type": "web-api"
|
|
967
984
|
}
|
|
968
|
-
]
|
|
985
|
+
],
|
|
986
|
+
"category": "finance"
|
|
969
987
|
},
|
|
970
988
|
"comfyui": {
|
|
971
989
|
"commands": [
|
|
@@ -993,7 +1011,8 @@
|
|
|
993
1011
|
"strategy": "public",
|
|
994
1012
|
"type": "service"
|
|
995
1013
|
}
|
|
996
|
-
]
|
|
1014
|
+
],
|
|
1015
|
+
"category": "desktop"
|
|
997
1016
|
},
|
|
998
1017
|
"coupang": {
|
|
999
1018
|
"commands": [
|
|
@@ -1015,7 +1034,8 @@
|
|
|
1015
1034
|
"strategy": "intercept",
|
|
1016
1035
|
"type": "web-api"
|
|
1017
1036
|
}
|
|
1018
|
-
]
|
|
1037
|
+
],
|
|
1038
|
+
"category": "shopping"
|
|
1019
1039
|
},
|
|
1020
1040
|
"crates-io": {
|
|
1021
1041
|
"commands": [
|
|
@@ -1037,7 +1057,8 @@
|
|
|
1037
1057
|
"strategy": "public",
|
|
1038
1058
|
"type": "web-api"
|
|
1039
1059
|
}
|
|
1040
|
-
]
|
|
1060
|
+
],
|
|
1061
|
+
"category": "dev"
|
|
1041
1062
|
},
|
|
1042
1063
|
"ctrip": {
|
|
1043
1064
|
"commands": [
|
|
@@ -1053,7 +1074,8 @@
|
|
|
1053
1074
|
"strategy": "public",
|
|
1054
1075
|
"type": "web-api"
|
|
1055
1076
|
}
|
|
1056
|
-
]
|
|
1077
|
+
],
|
|
1078
|
+
"category": "other"
|
|
1057
1079
|
},
|
|
1058
1080
|
"cua": {
|
|
1059
1081
|
"commands": [
|
|
@@ -1069,7 +1091,8 @@
|
|
|
1069
1091
|
"strategy": "public",
|
|
1070
1092
|
"type": "bridge"
|
|
1071
1093
|
}
|
|
1072
|
-
]
|
|
1094
|
+
],
|
|
1095
|
+
"category": "other"
|
|
1073
1096
|
},
|
|
1074
1097
|
"cursor": {
|
|
1075
1098
|
"commands": [
|
|
@@ -1079,7 +1102,8 @@
|
|
|
1079
1102
|
"strategy": "public",
|
|
1080
1103
|
"type": "web-api"
|
|
1081
1104
|
}
|
|
1082
|
-
]
|
|
1105
|
+
],
|
|
1106
|
+
"category": "other"
|
|
1083
1107
|
},
|
|
1084
1108
|
"dangdang": {
|
|
1085
1109
|
"commands": [
|
|
@@ -1095,7 +1119,8 @@
|
|
|
1095
1119
|
"strategy": "intercept",
|
|
1096
1120
|
"type": "web-api"
|
|
1097
1121
|
}
|
|
1098
|
-
]
|
|
1122
|
+
],
|
|
1123
|
+
"category": "shopping"
|
|
1099
1124
|
},
|
|
1100
1125
|
"deepseek": {
|
|
1101
1126
|
"commands": [
|
|
@@ -1111,7 +1136,8 @@
|
|
|
1111
1136
|
"strategy": "header",
|
|
1112
1137
|
"type": "web-api"
|
|
1113
1138
|
}
|
|
1114
|
-
]
|
|
1139
|
+
],
|
|
1140
|
+
"category": "ai"
|
|
1115
1141
|
},
|
|
1116
1142
|
"devto": {
|
|
1117
1143
|
"commands": [
|
|
@@ -1145,7 +1171,8 @@
|
|
|
1145
1171
|
"strategy": "public",
|
|
1146
1172
|
"type": "web-api"
|
|
1147
1173
|
}
|
|
1148
|
-
]
|
|
1174
|
+
],
|
|
1175
|
+
"category": "dev"
|
|
1149
1176
|
},
|
|
1150
1177
|
"dianping": {
|
|
1151
1178
|
"commands": [
|
|
@@ -1161,7 +1188,8 @@
|
|
|
1161
1188
|
"strategy": "intercept",
|
|
1162
1189
|
"type": "web-api"
|
|
1163
1190
|
}
|
|
1164
|
-
]
|
|
1191
|
+
],
|
|
1192
|
+
"category": "shopping"
|
|
1165
1193
|
},
|
|
1166
1194
|
"dictionary": {
|
|
1167
1195
|
"commands": [
|
|
@@ -1183,7 +1211,8 @@
|
|
|
1183
1211
|
"strategy": "public",
|
|
1184
1212
|
"type": "web-api"
|
|
1185
1213
|
}
|
|
1186
|
-
]
|
|
1214
|
+
],
|
|
1215
|
+
"category": "reference"
|
|
1187
1216
|
},
|
|
1188
1217
|
"dingtalk": {
|
|
1189
1218
|
"commands": [
|
|
@@ -1193,7 +1222,8 @@
|
|
|
1193
1222
|
"strategy": "public",
|
|
1194
1223
|
"type": "bridge"
|
|
1195
1224
|
}
|
|
1196
|
-
]
|
|
1225
|
+
],
|
|
1226
|
+
"category": "other"
|
|
1197
1227
|
},
|
|
1198
1228
|
"discord-app": {
|
|
1199
1229
|
"commands": [
|
|
@@ -1203,7 +1233,8 @@
|
|
|
1203
1233
|
"strategy": "public",
|
|
1204
1234
|
"type": "web-api"
|
|
1205
1235
|
}
|
|
1206
|
-
]
|
|
1236
|
+
],
|
|
1237
|
+
"category": "other"
|
|
1207
1238
|
},
|
|
1208
1239
|
"docker": {
|
|
1209
1240
|
"commands": [
|
|
@@ -1249,7 +1280,8 @@
|
|
|
1249
1280
|
"strategy": "public",
|
|
1250
1281
|
"type": "desktop"
|
|
1251
1282
|
}
|
|
1252
|
-
]
|
|
1283
|
+
],
|
|
1284
|
+
"category": "desktop"
|
|
1253
1285
|
},
|
|
1254
1286
|
"docker-hub": {
|
|
1255
1287
|
"commands": [
|
|
@@ -1271,7 +1303,8 @@
|
|
|
1271
1303
|
"strategy": "public",
|
|
1272
1304
|
"type": "web-api"
|
|
1273
1305
|
}
|
|
1274
|
-
]
|
|
1306
|
+
],
|
|
1307
|
+
"category": "dev"
|
|
1275
1308
|
},
|
|
1276
1309
|
"doctl": {
|
|
1277
1310
|
"commands": [
|
|
@@ -1281,7 +1314,8 @@
|
|
|
1281
1314
|
"strategy": "public",
|
|
1282
1315
|
"type": "bridge"
|
|
1283
1316
|
}
|
|
1284
|
-
]
|
|
1317
|
+
],
|
|
1318
|
+
"category": "other"
|
|
1285
1319
|
},
|
|
1286
1320
|
"douban": {
|
|
1287
1321
|
"commands": [
|
|
@@ -1357,7 +1391,8 @@
|
|
|
1357
1391
|
"strategy": "public",
|
|
1358
1392
|
"type": "web-api"
|
|
1359
1393
|
}
|
|
1360
|
-
]
|
|
1394
|
+
],
|
|
1395
|
+
"category": "social"
|
|
1361
1396
|
},
|
|
1362
1397
|
"doubao": {
|
|
1363
1398
|
"commands": [
|
|
@@ -1379,7 +1414,8 @@
|
|
|
1379
1414
|
"strategy": "intercept",
|
|
1380
1415
|
"type": "web-api"
|
|
1381
1416
|
}
|
|
1382
|
-
]
|
|
1417
|
+
],
|
|
1418
|
+
"category": "ai"
|
|
1383
1419
|
},
|
|
1384
1420
|
"doubao-web": {
|
|
1385
1421
|
"commands": [
|
|
@@ -1437,7 +1473,8 @@
|
|
|
1437
1473
|
"strategy": "intercept",
|
|
1438
1474
|
"type": "web-api"
|
|
1439
1475
|
}
|
|
1440
|
-
]
|
|
1476
|
+
],
|
|
1477
|
+
"category": "ai"
|
|
1441
1478
|
},
|
|
1442
1479
|
"douyin": {
|
|
1443
1480
|
"commands": [
|
|
@@ -1519,7 +1556,8 @@
|
|
|
1519
1556
|
"strategy": "cookie",
|
|
1520
1557
|
"type": "web-api"
|
|
1521
1558
|
}
|
|
1522
|
-
]
|
|
1559
|
+
],
|
|
1560
|
+
"category": "video"
|
|
1523
1561
|
},
|
|
1524
1562
|
"douyu": {
|
|
1525
1563
|
"commands": [
|
|
@@ -1535,7 +1573,8 @@
|
|
|
1535
1573
|
"strategy": "intercept",
|
|
1536
1574
|
"type": "web-api"
|
|
1537
1575
|
}
|
|
1538
|
-
]
|
|
1576
|
+
],
|
|
1577
|
+
"category": "video"
|
|
1539
1578
|
},
|
|
1540
1579
|
"drawio": {
|
|
1541
1580
|
"commands": [
|
|
@@ -1545,7 +1584,8 @@
|
|
|
1545
1584
|
"strategy": "public",
|
|
1546
1585
|
"type": "desktop"
|
|
1547
1586
|
}
|
|
1548
|
-
]
|
|
1587
|
+
],
|
|
1588
|
+
"category": "desktop"
|
|
1549
1589
|
},
|
|
1550
1590
|
"eastmoney": {
|
|
1551
1591
|
"commands": [
|
|
@@ -1573,7 +1613,8 @@
|
|
|
1573
1613
|
"strategy": "public",
|
|
1574
1614
|
"type": "web-api"
|
|
1575
1615
|
}
|
|
1576
|
-
]
|
|
1616
|
+
],
|
|
1617
|
+
"category": "finance"
|
|
1577
1618
|
},
|
|
1578
1619
|
"ele": {
|
|
1579
1620
|
"commands": [
|
|
@@ -1589,7 +1630,8 @@
|
|
|
1589
1630
|
"strategy": "intercept",
|
|
1590
1631
|
"type": "web-api"
|
|
1591
1632
|
}
|
|
1592
|
-
]
|
|
1633
|
+
],
|
|
1634
|
+
"category": "shopping"
|
|
1593
1635
|
},
|
|
1594
1636
|
"exchangerate": {
|
|
1595
1637
|
"commands": [
|
|
@@ -1605,7 +1647,8 @@
|
|
|
1605
1647
|
"strategy": "public",
|
|
1606
1648
|
"type": "web-api"
|
|
1607
1649
|
}
|
|
1608
|
-
]
|
|
1650
|
+
],
|
|
1651
|
+
"category": "utility"
|
|
1609
1652
|
},
|
|
1610
1653
|
"facebook": {
|
|
1611
1654
|
"commands": [
|
|
@@ -1681,7 +1724,8 @@
|
|
|
1681
1724
|
"strategy": "intercept",
|
|
1682
1725
|
"type": "web-api"
|
|
1683
1726
|
}
|
|
1684
|
-
]
|
|
1727
|
+
],
|
|
1728
|
+
"category": "social"
|
|
1685
1729
|
},
|
|
1686
1730
|
"feishu": {
|
|
1687
1731
|
"commands": [
|
|
@@ -1709,7 +1753,8 @@
|
|
|
1709
1753
|
"strategy": "public",
|
|
1710
1754
|
"type": "bridge"
|
|
1711
1755
|
}
|
|
1712
|
-
]
|
|
1756
|
+
],
|
|
1757
|
+
"category": "other"
|
|
1713
1758
|
},
|
|
1714
1759
|
"ffmpeg": {
|
|
1715
1760
|
"commands": [
|
|
@@ -1779,7 +1824,8 @@
|
|
|
1779
1824
|
"strategy": "public",
|
|
1780
1825
|
"type": "desktop"
|
|
1781
1826
|
}
|
|
1782
|
-
]
|
|
1827
|
+
],
|
|
1828
|
+
"category": "desktop"
|
|
1783
1829
|
},
|
|
1784
1830
|
"flyctl": {
|
|
1785
1831
|
"commands": [
|
|
@@ -1789,7 +1835,8 @@
|
|
|
1789
1835
|
"strategy": "public",
|
|
1790
1836
|
"type": "bridge"
|
|
1791
1837
|
}
|
|
1792
|
-
]
|
|
1838
|
+
],
|
|
1839
|
+
"category": "other"
|
|
1793
1840
|
},
|
|
1794
1841
|
"freecad": {
|
|
1795
1842
|
"commands": [
|
|
@@ -1883,7 +1930,8 @@
|
|
|
1883
1930
|
"strategy": "public",
|
|
1884
1931
|
"type": "desktop"
|
|
1885
1932
|
}
|
|
1886
|
-
]
|
|
1933
|
+
],
|
|
1934
|
+
"category": "desktop"
|
|
1887
1935
|
},
|
|
1888
1936
|
"futu": {
|
|
1889
1937
|
"commands": [
|
|
@@ -1899,7 +1947,8 @@
|
|
|
1899
1947
|
"strategy": "intercept",
|
|
1900
1948
|
"type": "web-api"
|
|
1901
1949
|
}
|
|
1902
|
-
]
|
|
1950
|
+
],
|
|
1951
|
+
"category": "finance"
|
|
1903
1952
|
},
|
|
1904
1953
|
"gcloud": {
|
|
1905
1954
|
"commands": [
|
|
@@ -1909,7 +1958,8 @@
|
|
|
1909
1958
|
"strategy": "public",
|
|
1910
1959
|
"type": "bridge"
|
|
1911
1960
|
}
|
|
1912
|
-
]
|
|
1961
|
+
],
|
|
1962
|
+
"category": "other"
|
|
1913
1963
|
},
|
|
1914
1964
|
"gemini": {
|
|
1915
1965
|
"commands": [
|
|
@@ -1943,7 +1993,8 @@
|
|
|
1943
1993
|
"strategy": "intercept",
|
|
1944
1994
|
"type": "web-api"
|
|
1945
1995
|
}
|
|
1946
|
-
]
|
|
1996
|
+
],
|
|
1997
|
+
"category": "ai"
|
|
1947
1998
|
},
|
|
1948
1999
|
"gh": {
|
|
1949
2000
|
"commands": [
|
|
@@ -1977,7 +2028,8 @@
|
|
|
1977
2028
|
"strategy": "public",
|
|
1978
2029
|
"type": "bridge"
|
|
1979
2030
|
}
|
|
1980
|
-
]
|
|
2031
|
+
],
|
|
2032
|
+
"category": "other"
|
|
1981
2033
|
},
|
|
1982
2034
|
"gimp": {
|
|
1983
2035
|
"commands": [
|
|
@@ -2053,7 +2105,8 @@
|
|
|
2053
2105
|
"strategy": "public",
|
|
2054
2106
|
"type": "desktop"
|
|
2055
2107
|
}
|
|
2056
|
-
]
|
|
2108
|
+
],
|
|
2109
|
+
"category": "desktop"
|
|
2057
2110
|
},
|
|
2058
2111
|
"gitee": {
|
|
2059
2112
|
"commands": [
|
|
@@ -2075,7 +2128,8 @@
|
|
|
2075
2128
|
"strategy": "public",
|
|
2076
2129
|
"type": "web-api"
|
|
2077
2130
|
}
|
|
2078
|
-
]
|
|
2131
|
+
],
|
|
2132
|
+
"category": "dev"
|
|
2079
2133
|
},
|
|
2080
2134
|
"github-trending": {
|
|
2081
2135
|
"commands": [
|
|
@@ -2097,7 +2151,8 @@
|
|
|
2097
2151
|
"strategy": "public",
|
|
2098
2152
|
"type": "web-api"
|
|
2099
2153
|
}
|
|
2100
|
-
]
|
|
2154
|
+
],
|
|
2155
|
+
"category": "dev"
|
|
2101
2156
|
},
|
|
2102
2157
|
"gitlab": {
|
|
2103
2158
|
"commands": [
|
|
@@ -2119,7 +2174,8 @@
|
|
|
2119
2174
|
"strategy": "public",
|
|
2120
2175
|
"type": "web-api"
|
|
2121
2176
|
}
|
|
2122
|
-
]
|
|
2177
|
+
],
|
|
2178
|
+
"category": "dev"
|
|
2123
2179
|
},
|
|
2124
2180
|
"godot": {
|
|
2125
2181
|
"commands": [
|
|
@@ -2135,7 +2191,8 @@
|
|
|
2135
2191
|
"strategy": "public",
|
|
2136
2192
|
"type": "desktop"
|
|
2137
2193
|
}
|
|
2138
|
-
]
|
|
2194
|
+
],
|
|
2195
|
+
"category": "other"
|
|
2139
2196
|
},
|
|
2140
2197
|
"google": {
|
|
2141
2198
|
"commands": [
|
|
@@ -2163,7 +2220,8 @@
|
|
|
2163
2220
|
"strategy": "public",
|
|
2164
2221
|
"type": "web-api"
|
|
2165
2222
|
}
|
|
2166
|
-
]
|
|
2223
|
+
],
|
|
2224
|
+
"category": "reference"
|
|
2167
2225
|
},
|
|
2168
2226
|
"grok": {
|
|
2169
2227
|
"commands": [
|
|
@@ -2173,7 +2231,8 @@
|
|
|
2173
2231
|
"strategy": "intercept",
|
|
2174
2232
|
"type": "web-api"
|
|
2175
2233
|
}
|
|
2176
|
-
]
|
|
2234
|
+
],
|
|
2235
|
+
"category": "ai"
|
|
2177
2236
|
},
|
|
2178
2237
|
"hackernews": {
|
|
2179
2238
|
"commands": [
|
|
@@ -2237,7 +2296,8 @@
|
|
|
2237
2296
|
"strategy": "public",
|
|
2238
2297
|
"type": "web-api"
|
|
2239
2298
|
}
|
|
2240
|
-
]
|
|
2299
|
+
],
|
|
2300
|
+
"category": "news"
|
|
2241
2301
|
},
|
|
2242
2302
|
"hermes": {
|
|
2243
2303
|
"commands": [
|
|
@@ -2259,7 +2319,8 @@
|
|
|
2259
2319
|
"strategy": "public",
|
|
2260
2320
|
"type": "desktop"
|
|
2261
2321
|
}
|
|
2262
|
-
]
|
|
2322
|
+
],
|
|
2323
|
+
"category": "other"
|
|
2263
2324
|
},
|
|
2264
2325
|
"hf": {
|
|
2265
2326
|
"commands": [
|
|
@@ -2287,7 +2348,8 @@
|
|
|
2287
2348
|
"strategy": "public",
|
|
2288
2349
|
"type": "web-api"
|
|
2289
2350
|
}
|
|
2290
|
-
]
|
|
2351
|
+
],
|
|
2352
|
+
"category": "ai"
|
|
2291
2353
|
},
|
|
2292
2354
|
"homebrew": {
|
|
2293
2355
|
"commands": [
|
|
@@ -2303,7 +2365,8 @@
|
|
|
2303
2365
|
"strategy": "public",
|
|
2304
2366
|
"type": "web-api"
|
|
2305
2367
|
}
|
|
2306
|
-
]
|
|
2368
|
+
],
|
|
2369
|
+
"category": "dev"
|
|
2307
2370
|
},
|
|
2308
2371
|
"huggingface-papers": {
|
|
2309
2372
|
"commands": [
|
|
@@ -2319,7 +2382,8 @@
|
|
|
2319
2382
|
"strategy": "public",
|
|
2320
2383
|
"type": "web-api"
|
|
2321
2384
|
}
|
|
2322
|
-
]
|
|
2385
|
+
],
|
|
2386
|
+
"category": "ai"
|
|
2323
2387
|
},
|
|
2324
2388
|
"hupu": {
|
|
2325
2389
|
"commands": [
|
|
@@ -2365,7 +2429,8 @@
|
|
|
2365
2429
|
"strategy": "intercept",
|
|
2366
2430
|
"type": "web-api"
|
|
2367
2431
|
}
|
|
2368
|
-
]
|
|
2432
|
+
],
|
|
2433
|
+
"category": "social"
|
|
2369
2434
|
},
|
|
2370
2435
|
"imagemagick": {
|
|
2371
2436
|
"commands": [
|
|
@@ -2405,7 +2470,8 @@
|
|
|
2405
2470
|
"strategy": "public",
|
|
2406
2471
|
"type": "desktop"
|
|
2407
2472
|
}
|
|
2408
|
-
]
|
|
2473
|
+
],
|
|
2474
|
+
"category": "desktop"
|
|
2409
2475
|
},
|
|
2410
2476
|
"imdb": {
|
|
2411
2477
|
"commands": [
|
|
@@ -2451,7 +2517,8 @@
|
|
|
2451
2517
|
"strategy": "public",
|
|
2452
2518
|
"type": "web-api"
|
|
2453
2519
|
}
|
|
2454
|
-
]
|
|
2520
|
+
],
|
|
2521
|
+
"category": "reference"
|
|
2455
2522
|
},
|
|
2456
2523
|
"infoq": {
|
|
2457
2524
|
"commands": [
|
|
@@ -2467,7 +2534,8 @@
|
|
|
2467
2534
|
"strategy": "public",
|
|
2468
2535
|
"type": "web-api"
|
|
2469
2536
|
}
|
|
2470
|
-
]
|
|
2537
|
+
],
|
|
2538
|
+
"category": "news"
|
|
2471
2539
|
},
|
|
2472
2540
|
"inkscape": {
|
|
2473
2541
|
"commands": [
|
|
@@ -2489,7 +2557,8 @@
|
|
|
2489
2557
|
"strategy": "public",
|
|
2490
2558
|
"type": "desktop"
|
|
2491
2559
|
}
|
|
2492
|
-
]
|
|
2560
|
+
],
|
|
2561
|
+
"category": "desktop"
|
|
2493
2562
|
},
|
|
2494
2563
|
"instagram": {
|
|
2495
2564
|
"commands": [
|
|
@@ -2649,7 +2718,8 @@
|
|
|
2649
2718
|
"strategy": "intercept",
|
|
2650
2719
|
"type": "web-api"
|
|
2651
2720
|
}
|
|
2652
|
-
]
|
|
2721
|
+
],
|
|
2722
|
+
"category": "social"
|
|
2653
2723
|
},
|
|
2654
2724
|
"ip-info": {
|
|
2655
2725
|
"commands": [
|
|
@@ -2659,7 +2729,8 @@
|
|
|
2659
2729
|
"strategy": "public",
|
|
2660
2730
|
"type": "web-api"
|
|
2661
2731
|
}
|
|
2662
|
-
]
|
|
2732
|
+
],
|
|
2733
|
+
"category": "utility"
|
|
2663
2734
|
},
|
|
2664
2735
|
"itch-io": {
|
|
2665
2736
|
"commands": [
|
|
@@ -2681,7 +2752,8 @@
|
|
|
2681
2752
|
"strategy": "public",
|
|
2682
2753
|
"type": "web-api"
|
|
2683
2754
|
}
|
|
2684
|
-
]
|
|
2755
|
+
],
|
|
2756
|
+
"category": "other"
|
|
2685
2757
|
},
|
|
2686
2758
|
"ithome": {
|
|
2687
2759
|
"commands": [
|
|
@@ -2703,7 +2775,8 @@
|
|
|
2703
2775
|
"strategy": "public",
|
|
2704
2776
|
"type": "web-api"
|
|
2705
2777
|
}
|
|
2706
|
-
]
|
|
2778
|
+
],
|
|
2779
|
+
"category": "news"
|
|
2707
2780
|
},
|
|
2708
2781
|
"jd": {
|
|
2709
2782
|
"commands": [
|
|
@@ -2719,19 +2792,14 @@
|
|
|
2719
2792
|
"strategy": "cookie",
|
|
2720
2793
|
"type": "web-api"
|
|
2721
2794
|
},
|
|
2722
|
-
{
|
|
2723
|
-
"name": "manifest",
|
|
2724
|
-
"description": "JD.com — Chinese e-commerce platform",
|
|
2725
|
-
"strategy": "public",
|
|
2726
|
-
"type": "web-api"
|
|
2727
|
-
},
|
|
2728
2795
|
{
|
|
2729
2796
|
"name": "search",
|
|
2730
2797
|
"description": "Search JD.com products",
|
|
2731
2798
|
"strategy": "public",
|
|
2732
2799
|
"type": "web-api"
|
|
2733
2800
|
}
|
|
2734
|
-
]
|
|
2801
|
+
],
|
|
2802
|
+
"category": "shopping"
|
|
2735
2803
|
},
|
|
2736
2804
|
"jianyu": {
|
|
2737
2805
|
"commands": [
|
|
@@ -2741,7 +2809,8 @@
|
|
|
2741
2809
|
"strategy": "intercept",
|
|
2742
2810
|
"type": "browser"
|
|
2743
2811
|
}
|
|
2744
|
-
]
|
|
2812
|
+
],
|
|
2813
|
+
"category": "other"
|
|
2745
2814
|
},
|
|
2746
2815
|
"jike": {
|
|
2747
2816
|
"commands": [
|
|
@@ -2805,7 +2874,8 @@
|
|
|
2805
2874
|
"strategy": "cookie",
|
|
2806
2875
|
"type": "browser"
|
|
2807
2876
|
}
|
|
2808
|
-
]
|
|
2877
|
+
],
|
|
2878
|
+
"category": "social"
|
|
2809
2879
|
},
|
|
2810
2880
|
"jimeng": {
|
|
2811
2881
|
"commands": [
|
|
@@ -2821,7 +2891,8 @@
|
|
|
2821
2891
|
"strategy": "intercept",
|
|
2822
2892
|
"type": "web-api"
|
|
2823
2893
|
}
|
|
2824
|
-
]
|
|
2894
|
+
],
|
|
2895
|
+
"category": "other"
|
|
2825
2896
|
},
|
|
2826
2897
|
"jq": {
|
|
2827
2898
|
"commands": [
|
|
@@ -2837,7 +2908,8 @@
|
|
|
2837
2908
|
"strategy": "public",
|
|
2838
2909
|
"type": "bridge"
|
|
2839
2910
|
}
|
|
2840
|
-
]
|
|
2911
|
+
],
|
|
2912
|
+
"category": "other"
|
|
2841
2913
|
},
|
|
2842
2914
|
"kdenlive": {
|
|
2843
2915
|
"commands": [
|
|
@@ -2859,7 +2931,8 @@
|
|
|
2859
2931
|
"strategy": "public",
|
|
2860
2932
|
"type": "desktop"
|
|
2861
2933
|
}
|
|
2862
|
-
]
|
|
2934
|
+
],
|
|
2935
|
+
"category": "other"
|
|
2863
2936
|
},
|
|
2864
2937
|
"ke": {
|
|
2865
2938
|
"commands": [
|
|
@@ -2875,7 +2948,8 @@
|
|
|
2875
2948
|
"strategy": "intercept",
|
|
2876
2949
|
"type": "browser"
|
|
2877
2950
|
}
|
|
2878
|
-
]
|
|
2951
|
+
],
|
|
2952
|
+
"category": "other"
|
|
2879
2953
|
},
|
|
2880
2954
|
"krita": {
|
|
2881
2955
|
"commands": [
|
|
@@ -2903,7 +2977,8 @@
|
|
|
2903
2977
|
"strategy": "public",
|
|
2904
2978
|
"type": "desktop"
|
|
2905
2979
|
}
|
|
2906
|
-
]
|
|
2980
|
+
],
|
|
2981
|
+
"category": "other"
|
|
2907
2982
|
},
|
|
2908
2983
|
"kuaishou": {
|
|
2909
2984
|
"commands": [
|
|
@@ -2919,7 +2994,8 @@
|
|
|
2919
2994
|
"strategy": "intercept",
|
|
2920
2995
|
"type": "web-api"
|
|
2921
2996
|
}
|
|
2922
|
-
]
|
|
2997
|
+
],
|
|
2998
|
+
"category": "video"
|
|
2923
2999
|
},
|
|
2924
3000
|
"lark": {
|
|
2925
3001
|
"commands": [
|
|
@@ -2929,7 +3005,8 @@
|
|
|
2929
3005
|
"strategy": "public",
|
|
2930
3006
|
"type": "bridge"
|
|
2931
3007
|
}
|
|
2932
|
-
]
|
|
3008
|
+
],
|
|
3009
|
+
"category": "other"
|
|
2933
3010
|
},
|
|
2934
3011
|
"lesswrong": {
|
|
2935
3012
|
"commands": [
|
|
@@ -3023,7 +3100,8 @@
|
|
|
3023
3100
|
"strategy": "public",
|
|
3024
3101
|
"type": "web-api"
|
|
3025
3102
|
}
|
|
3026
|
-
]
|
|
3103
|
+
],
|
|
3104
|
+
"category": "other"
|
|
3027
3105
|
},
|
|
3028
3106
|
"libreoffice": {
|
|
3029
3107
|
"commands": [
|
|
@@ -3039,7 +3117,8 @@
|
|
|
3039
3117
|
"strategy": "public",
|
|
3040
3118
|
"type": "desktop"
|
|
3041
3119
|
}
|
|
3042
|
-
]
|
|
3120
|
+
],
|
|
3121
|
+
"category": "desktop"
|
|
3043
3122
|
},
|
|
3044
3123
|
"linkedin": {
|
|
3045
3124
|
"commands": [
|
|
@@ -3049,12 +3128,6 @@
|
|
|
3049
3128
|
"strategy": "cookie",
|
|
3050
3129
|
"type": "web-api"
|
|
3051
3130
|
},
|
|
3052
|
-
{
|
|
3053
|
-
"name": "manifest",
|
|
3054
|
-
"description": "LinkedIn — professional networking and job search",
|
|
3055
|
-
"strategy": "header",
|
|
3056
|
-
"type": "web-api"
|
|
3057
|
-
},
|
|
3058
3131
|
{
|
|
3059
3132
|
"name": "profile",
|
|
3060
3133
|
"description": "LinkedIn user profile details",
|
|
@@ -3073,7 +3146,8 @@
|
|
|
3073
3146
|
"strategy": "header",
|
|
3074
3147
|
"type": "web-api"
|
|
3075
3148
|
}
|
|
3076
|
-
]
|
|
3149
|
+
],
|
|
3150
|
+
"category": "jobs"
|
|
3077
3151
|
},
|
|
3078
3152
|
"linux-do": {
|
|
3079
3153
|
"commands": [
|
|
@@ -3137,7 +3211,8 @@
|
|
|
3137
3211
|
"strategy": "public",
|
|
3138
3212
|
"type": "web-api"
|
|
3139
3213
|
}
|
|
3140
|
-
]
|
|
3214
|
+
],
|
|
3215
|
+
"category": "social"
|
|
3141
3216
|
},
|
|
3142
3217
|
"lobsters": {
|
|
3143
3218
|
"commands": [
|
|
@@ -3171,7 +3246,8 @@
|
|
|
3171
3246
|
"strategy": "public",
|
|
3172
3247
|
"type": "web-api"
|
|
3173
3248
|
}
|
|
3174
|
-
]
|
|
3249
|
+
],
|
|
3250
|
+
"category": "social"
|
|
3175
3251
|
},
|
|
3176
3252
|
"macos": {
|
|
3177
3253
|
"commands": [
|
|
@@ -3277,6 +3353,24 @@
|
|
|
3277
3353
|
"strategy": "public",
|
|
3278
3354
|
"type": "desktop"
|
|
3279
3355
|
},
|
|
3356
|
+
{
|
|
3357
|
+
"name": "finder-copy",
|
|
3358
|
+
"description": "Copy a file or folder to a destination path",
|
|
3359
|
+
"strategy": "public",
|
|
3360
|
+
"type": "desktop"
|
|
3361
|
+
},
|
|
3362
|
+
{
|
|
3363
|
+
"name": "finder-move",
|
|
3364
|
+
"description": "Move or rename a file or folder",
|
|
3365
|
+
"strategy": "public",
|
|
3366
|
+
"type": "desktop"
|
|
3367
|
+
},
|
|
3368
|
+
{
|
|
3369
|
+
"name": "finder-new-folder",
|
|
3370
|
+
"description": "Create a new directory (with intermediate directories)",
|
|
3371
|
+
"strategy": "public",
|
|
3372
|
+
"type": "desktop"
|
|
3373
|
+
},
|
|
3280
3374
|
{
|
|
3281
3375
|
"name": "finder-recent",
|
|
3282
3376
|
"description": "List files opened in the last 7 days",
|
|
@@ -3397,12 +3491,24 @@
|
|
|
3397
3491
|
"strategy": "public",
|
|
3398
3492
|
"type": "desktop"
|
|
3399
3493
|
},
|
|
3494
|
+
{
|
|
3495
|
+
"name": "safari-history",
|
|
3496
|
+
"description": "Get recent Safari browsing history via SQLite",
|
|
3497
|
+
"strategy": "public",
|
|
3498
|
+
"type": "desktop"
|
|
3499
|
+
},
|
|
3400
3500
|
{
|
|
3401
3501
|
"name": "safari-tabs",
|
|
3402
3502
|
"description": "List all open Safari tabs",
|
|
3403
3503
|
"strategy": "public",
|
|
3404
3504
|
"type": "desktop"
|
|
3405
3505
|
},
|
|
3506
|
+
{
|
|
3507
|
+
"name": "safari-url",
|
|
3508
|
+
"description": "Get the URL and title of the active Safari tab",
|
|
3509
|
+
"strategy": "public",
|
|
3510
|
+
"type": "desktop"
|
|
3511
|
+
},
|
|
3406
3512
|
{
|
|
3407
3513
|
"name": "say",
|
|
3408
3514
|
"description": "Speak text aloud using macOS text-to-speech",
|
|
@@ -3415,6 +3521,12 @@
|
|
|
3415
3521
|
"strategy": "public",
|
|
3416
3522
|
"type": "desktop"
|
|
3417
3523
|
},
|
|
3524
|
+
{
|
|
3525
|
+
"name": "screen-recording",
|
|
3526
|
+
"description": "Record the screen to a video file using screencapture",
|
|
3527
|
+
"strategy": "public",
|
|
3528
|
+
"type": "desktop"
|
|
3529
|
+
},
|
|
3418
3530
|
{
|
|
3419
3531
|
"name": "screenshot",
|
|
3420
3532
|
"description": "Take a screenshot and save to file or clipboard",
|
|
@@ -3469,6 +3581,12 @@
|
|
|
3469
3581
|
"strategy": "public",
|
|
3470
3582
|
"type": "desktop"
|
|
3471
3583
|
},
|
|
3584
|
+
{
|
|
3585
|
+
"name": "wallpaper",
|
|
3586
|
+
"description": "Get or set the desktop wallpaper",
|
|
3587
|
+
"strategy": "public",
|
|
3588
|
+
"type": "desktop"
|
|
3589
|
+
},
|
|
3472
3590
|
{
|
|
3473
3591
|
"name": "wifi",
|
|
3474
3592
|
"description": "Get Wi-Fi status or turn Wi-Fi on/off",
|
|
@@ -3481,7 +3599,8 @@
|
|
|
3481
3599
|
"strategy": "public",
|
|
3482
3600
|
"type": "desktop"
|
|
3483
3601
|
}
|
|
3484
|
-
]
|
|
3602
|
+
],
|
|
3603
|
+
"category": "desktop"
|
|
3485
3604
|
},
|
|
3486
3605
|
"maimai": {
|
|
3487
3606
|
"commands": [
|
|
@@ -3491,7 +3610,8 @@
|
|
|
3491
3610
|
"strategy": "intercept",
|
|
3492
3611
|
"type": "browser"
|
|
3493
3612
|
}
|
|
3494
|
-
]
|
|
3613
|
+
],
|
|
3614
|
+
"category": "other"
|
|
3495
3615
|
},
|
|
3496
3616
|
"maoyan": {
|
|
3497
3617
|
"commands": [
|
|
@@ -3507,7 +3627,8 @@
|
|
|
3507
3627
|
"strategy": "intercept",
|
|
3508
3628
|
"type": "web-api"
|
|
3509
3629
|
}
|
|
3510
|
-
]
|
|
3630
|
+
],
|
|
3631
|
+
"category": "shopping"
|
|
3511
3632
|
},
|
|
3512
3633
|
"mastodon": {
|
|
3513
3634
|
"commands": [
|
|
@@ -3535,7 +3656,8 @@
|
|
|
3535
3656
|
"strategy": "public",
|
|
3536
3657
|
"type": "web-api"
|
|
3537
3658
|
}
|
|
3538
|
-
]
|
|
3659
|
+
],
|
|
3660
|
+
"category": "social"
|
|
3539
3661
|
},
|
|
3540
3662
|
"medium": {
|
|
3541
3663
|
"commands": [
|
|
@@ -3569,7 +3691,8 @@
|
|
|
3569
3691
|
"strategy": "public",
|
|
3570
3692
|
"type": "web-api"
|
|
3571
3693
|
}
|
|
3572
|
-
]
|
|
3694
|
+
],
|
|
3695
|
+
"category": "content"
|
|
3573
3696
|
},
|
|
3574
3697
|
"meituan": {
|
|
3575
3698
|
"commands": [
|
|
@@ -3585,7 +3708,8 @@
|
|
|
3585
3708
|
"strategy": "cookie",
|
|
3586
3709
|
"type": "web-api"
|
|
3587
3710
|
}
|
|
3588
|
-
]
|
|
3711
|
+
],
|
|
3712
|
+
"category": "shopping"
|
|
3589
3713
|
},
|
|
3590
3714
|
"mermaid": {
|
|
3591
3715
|
"commands": [
|
|
@@ -3595,7 +3719,8 @@
|
|
|
3595
3719
|
"strategy": "public",
|
|
3596
3720
|
"type": "desktop"
|
|
3597
3721
|
}
|
|
3598
|
-
]
|
|
3722
|
+
],
|
|
3723
|
+
"category": "desktop"
|
|
3599
3724
|
},
|
|
3600
3725
|
"minimax": {
|
|
3601
3726
|
"commands": [
|
|
@@ -3617,7 +3742,8 @@
|
|
|
3617
3742
|
"strategy": "header",
|
|
3618
3743
|
"type": "web-api"
|
|
3619
3744
|
}
|
|
3620
|
-
]
|
|
3745
|
+
],
|
|
3746
|
+
"category": "ai"
|
|
3621
3747
|
},
|
|
3622
3748
|
"motion-studio": {
|
|
3623
3749
|
"commands": [
|
|
@@ -3627,7 +3753,8 @@
|
|
|
3627
3753
|
"strategy": "public",
|
|
3628
3754
|
"type": "web-api"
|
|
3629
3755
|
}
|
|
3630
|
-
]
|
|
3756
|
+
],
|
|
3757
|
+
"category": "other"
|
|
3631
3758
|
},
|
|
3632
3759
|
"mubu": {
|
|
3633
3760
|
"commands": [
|
|
@@ -3643,7 +3770,8 @@
|
|
|
3643
3770
|
"strategy": "intercept",
|
|
3644
3771
|
"type": "web-api"
|
|
3645
3772
|
}
|
|
3646
|
-
]
|
|
3773
|
+
],
|
|
3774
|
+
"category": "other"
|
|
3647
3775
|
},
|
|
3648
3776
|
"musescore": {
|
|
3649
3777
|
"commands": [
|
|
@@ -3677,7 +3805,8 @@
|
|
|
3677
3805
|
"strategy": "public",
|
|
3678
3806
|
"type": "desktop"
|
|
3679
3807
|
}
|
|
3680
|
-
]
|
|
3808
|
+
],
|
|
3809
|
+
"category": "desktop"
|
|
3681
3810
|
},
|
|
3682
3811
|
"neonctl": {
|
|
3683
3812
|
"commands": [
|
|
@@ -3687,7 +3816,8 @@
|
|
|
3687
3816
|
"strategy": "public",
|
|
3688
3817
|
"type": "bridge"
|
|
3689
3818
|
}
|
|
3690
|
-
]
|
|
3819
|
+
],
|
|
3820
|
+
"category": "other"
|
|
3691
3821
|
},
|
|
3692
3822
|
"netease-music": {
|
|
3693
3823
|
"commands": [
|
|
@@ -3715,7 +3845,8 @@
|
|
|
3715
3845
|
"strategy": "public",
|
|
3716
3846
|
"type": "web-api"
|
|
3717
3847
|
}
|
|
3718
|
-
]
|
|
3848
|
+
],
|
|
3849
|
+
"category": "audio"
|
|
3719
3850
|
},
|
|
3720
3851
|
"netlify": {
|
|
3721
3852
|
"commands": [
|
|
@@ -3725,7 +3856,8 @@
|
|
|
3725
3856
|
"strategy": "public",
|
|
3726
3857
|
"type": "bridge"
|
|
3727
3858
|
}
|
|
3728
|
-
]
|
|
3859
|
+
],
|
|
3860
|
+
"category": "other"
|
|
3729
3861
|
},
|
|
3730
3862
|
"notebooklm": {
|
|
3731
3863
|
"commands": [
|
|
@@ -3819,7 +3951,8 @@
|
|
|
3819
3951
|
"strategy": "intercept",
|
|
3820
3952
|
"type": "web-api"
|
|
3821
3953
|
}
|
|
3822
|
-
]
|
|
3954
|
+
],
|
|
3955
|
+
"category": "ai"
|
|
3823
3956
|
},
|
|
3824
3957
|
"notion": {
|
|
3825
3958
|
"commands": [
|
|
@@ -3841,7 +3974,8 @@
|
|
|
3841
3974
|
"strategy": "cookie",
|
|
3842
3975
|
"type": "web-api"
|
|
3843
3976
|
}
|
|
3844
|
-
]
|
|
3977
|
+
],
|
|
3978
|
+
"category": "other"
|
|
3845
3979
|
},
|
|
3846
3980
|
"notion-app": {
|
|
3847
3981
|
"commands": [
|
|
@@ -3851,7 +3985,8 @@
|
|
|
3851
3985
|
"strategy": "public",
|
|
3852
3986
|
"type": "web-api"
|
|
3853
3987
|
}
|
|
3854
|
-
]
|
|
3988
|
+
],
|
|
3989
|
+
"category": "other"
|
|
3855
3990
|
},
|
|
3856
3991
|
"novita": {
|
|
3857
3992
|
"commands": [
|
|
@@ -3873,7 +4008,8 @@
|
|
|
3873
4008
|
"strategy": "public",
|
|
3874
4009
|
"type": "service"
|
|
3875
4010
|
}
|
|
3876
|
-
]
|
|
4011
|
+
],
|
|
4012
|
+
"category": "ai"
|
|
3877
4013
|
},
|
|
3878
4014
|
"npm": {
|
|
3879
4015
|
"commands": [
|
|
@@ -3901,7 +4037,8 @@
|
|
|
3901
4037
|
"strategy": "public",
|
|
3902
4038
|
"type": "web-api"
|
|
3903
4039
|
}
|
|
3904
|
-
]
|
|
4040
|
+
],
|
|
4041
|
+
"category": "dev"
|
|
3905
4042
|
},
|
|
3906
4043
|
"npm-trends": {
|
|
3907
4044
|
"commands": [
|
|
@@ -3917,7 +4054,8 @@
|
|
|
3917
4054
|
"strategy": "public",
|
|
3918
4055
|
"type": "web-api"
|
|
3919
4056
|
}
|
|
3920
|
-
]
|
|
4057
|
+
],
|
|
4058
|
+
"category": "dev"
|
|
3921
4059
|
},
|
|
3922
4060
|
"nytimes": {
|
|
3923
4061
|
"commands": [
|
|
@@ -3933,7 +4071,8 @@
|
|
|
3933
4071
|
"strategy": "public",
|
|
3934
4072
|
"type": "web-api"
|
|
3935
4073
|
}
|
|
3936
|
-
]
|
|
4074
|
+
],
|
|
4075
|
+
"category": "news"
|
|
3937
4076
|
},
|
|
3938
4077
|
"obs": {
|
|
3939
4078
|
"commands": [
|
|
@@ -3985,7 +4124,8 @@
|
|
|
3985
4124
|
"strategy": "public",
|
|
3986
4125
|
"type": "service"
|
|
3987
4126
|
}
|
|
3988
|
-
]
|
|
4127
|
+
],
|
|
4128
|
+
"category": "other"
|
|
3989
4129
|
},
|
|
3990
4130
|
"obsidian": {
|
|
3991
4131
|
"commands": [
|
|
@@ -4007,7 +4147,8 @@
|
|
|
4007
4147
|
"strategy": "public",
|
|
4008
4148
|
"type": "desktop"
|
|
4009
4149
|
}
|
|
4010
|
-
]
|
|
4150
|
+
],
|
|
4151
|
+
"category": "other"
|
|
4011
4152
|
},
|
|
4012
4153
|
"ollama": {
|
|
4013
4154
|
"commands": [
|
|
@@ -4035,7 +4176,8 @@
|
|
|
4035
4176
|
"strategy": "public",
|
|
4036
4177
|
"type": "service"
|
|
4037
4178
|
}
|
|
4038
|
-
]
|
|
4179
|
+
],
|
|
4180
|
+
"category": "ai"
|
|
4039
4181
|
},
|
|
4040
4182
|
"ones": {
|
|
4041
4183
|
"commands": [
|
|
@@ -4105,7 +4247,8 @@
|
|
|
4105
4247
|
"strategy": "intercept",
|
|
4106
4248
|
"type": "web-api"
|
|
4107
4249
|
}
|
|
4108
|
-
]
|
|
4250
|
+
],
|
|
4251
|
+
"category": "other"
|
|
4109
4252
|
},
|
|
4110
4253
|
"opencode": {
|
|
4111
4254
|
"commands": [
|
|
@@ -4115,7 +4258,8 @@
|
|
|
4115
4258
|
"strategy": "public",
|
|
4116
4259
|
"type": "bridge"
|
|
4117
4260
|
}
|
|
4118
|
-
]
|
|
4261
|
+
],
|
|
4262
|
+
"category": "other"
|
|
4119
4263
|
},
|
|
4120
4264
|
"openharness": {
|
|
4121
4265
|
"commands": [
|
|
@@ -4131,7 +4275,8 @@
|
|
|
4131
4275
|
"strategy": "public",
|
|
4132
4276
|
"type": "desktop"
|
|
4133
4277
|
}
|
|
4134
|
-
]
|
|
4278
|
+
],
|
|
4279
|
+
"category": "other"
|
|
4135
4280
|
},
|
|
4136
4281
|
"openrouter": {
|
|
4137
4282
|
"commands": [
|
|
@@ -4147,7 +4292,8 @@
|
|
|
4147
4292
|
"strategy": "public",
|
|
4148
4293
|
"type": "web-api"
|
|
4149
4294
|
}
|
|
4150
|
-
]
|
|
4295
|
+
],
|
|
4296
|
+
"category": "ai"
|
|
4151
4297
|
},
|
|
4152
4298
|
"pandoc": {
|
|
4153
4299
|
"commands": [
|
|
@@ -4157,7 +4303,8 @@
|
|
|
4157
4303
|
"strategy": "public",
|
|
4158
4304
|
"type": "desktop"
|
|
4159
4305
|
}
|
|
4160
|
-
]
|
|
4306
|
+
],
|
|
4307
|
+
"category": "desktop"
|
|
4161
4308
|
},
|
|
4162
4309
|
"paperreview": {
|
|
4163
4310
|
"commands": [
|
|
@@ -4179,7 +4326,8 @@
|
|
|
4179
4326
|
"strategy": "public",
|
|
4180
4327
|
"type": "web-api"
|
|
4181
4328
|
}
|
|
4182
|
-
]
|
|
4329
|
+
],
|
|
4330
|
+
"category": "reference"
|
|
4183
4331
|
},
|
|
4184
4332
|
"perplexity": {
|
|
4185
4333
|
"commands": [
|
|
@@ -4189,7 +4337,8 @@
|
|
|
4189
4337
|
"strategy": "header",
|
|
4190
4338
|
"type": "web-api"
|
|
4191
4339
|
}
|
|
4192
|
-
]
|
|
4340
|
+
],
|
|
4341
|
+
"category": "ai"
|
|
4193
4342
|
},
|
|
4194
4343
|
"pexels": {
|
|
4195
4344
|
"commands": [
|
|
@@ -4205,7 +4354,8 @@
|
|
|
4205
4354
|
"strategy": "header",
|
|
4206
4355
|
"type": "web-api"
|
|
4207
4356
|
}
|
|
4208
|
-
]
|
|
4357
|
+
],
|
|
4358
|
+
"category": "other"
|
|
4209
4359
|
},
|
|
4210
4360
|
"pinduoduo": {
|
|
4211
4361
|
"commands": [
|
|
@@ -4221,7 +4371,8 @@
|
|
|
4221
4371
|
"strategy": "cookie",
|
|
4222
4372
|
"type": "web-api"
|
|
4223
4373
|
}
|
|
4224
|
-
]
|
|
4374
|
+
],
|
|
4375
|
+
"category": "shopping"
|
|
4225
4376
|
},
|
|
4226
4377
|
"pixiv": {
|
|
4227
4378
|
"commands": [
|
|
@@ -4261,7 +4412,8 @@
|
|
|
4261
4412
|
"strategy": "intercept",
|
|
4262
4413
|
"type": "web-api"
|
|
4263
4414
|
}
|
|
4264
|
-
]
|
|
4415
|
+
],
|
|
4416
|
+
"category": "content"
|
|
4265
4417
|
},
|
|
4266
4418
|
"producthunt": {
|
|
4267
4419
|
"commands": [
|
|
@@ -4295,7 +4447,8 @@
|
|
|
4295
4447
|
"strategy": "public",
|
|
4296
4448
|
"type": "web-api"
|
|
4297
4449
|
}
|
|
4298
|
-
]
|
|
4450
|
+
],
|
|
4451
|
+
"category": "dev"
|
|
4299
4452
|
},
|
|
4300
4453
|
"pscale": {
|
|
4301
4454
|
"commands": [
|
|
@@ -4305,7 +4458,8 @@
|
|
|
4305
4458
|
"strategy": "public",
|
|
4306
4459
|
"type": "bridge"
|
|
4307
4460
|
}
|
|
4308
|
-
]
|
|
4461
|
+
],
|
|
4462
|
+
"category": "other"
|
|
4309
4463
|
},
|
|
4310
4464
|
"pypi": {
|
|
4311
4465
|
"commands": [
|
|
@@ -4327,7 +4481,8 @@
|
|
|
4327
4481
|
"strategy": "public",
|
|
4328
4482
|
"type": "web-api"
|
|
4329
4483
|
}
|
|
4330
|
-
]
|
|
4484
|
+
],
|
|
4485
|
+
"category": "dev"
|
|
4331
4486
|
},
|
|
4332
4487
|
"quark": {
|
|
4333
4488
|
"commands": [
|
|
@@ -4343,7 +4498,8 @@
|
|
|
4343
4498
|
"strategy": "cookie",
|
|
4344
4499
|
"type": "web-api"
|
|
4345
4500
|
}
|
|
4346
|
-
]
|
|
4501
|
+
],
|
|
4502
|
+
"category": "other"
|
|
4347
4503
|
},
|
|
4348
4504
|
"qweather": {
|
|
4349
4505
|
"commands": [
|
|
@@ -4359,7 +4515,8 @@
|
|
|
4359
4515
|
"strategy": "public",
|
|
4360
4516
|
"type": "web-api"
|
|
4361
4517
|
}
|
|
4362
|
-
]
|
|
4518
|
+
],
|
|
4519
|
+
"category": "utility"
|
|
4363
4520
|
},
|
|
4364
4521
|
"railway": {
|
|
4365
4522
|
"commands": [
|
|
@@ -4369,7 +4526,8 @@
|
|
|
4369
4526
|
"strategy": "public",
|
|
4370
4527
|
"type": "bridge"
|
|
4371
4528
|
}
|
|
4372
|
-
]
|
|
4529
|
+
],
|
|
4530
|
+
"category": "other"
|
|
4373
4531
|
},
|
|
4374
4532
|
"reddit": {
|
|
4375
4533
|
"commands": [
|
|
@@ -4493,7 +4651,8 @@
|
|
|
4493
4651
|
"strategy": "public",
|
|
4494
4652
|
"type": "web-api"
|
|
4495
4653
|
}
|
|
4496
|
-
]
|
|
4654
|
+
],
|
|
4655
|
+
"category": "social"
|
|
4497
4656
|
},
|
|
4498
4657
|
"renderdoc": {
|
|
4499
4658
|
"commands": [
|
|
@@ -4509,7 +4668,8 @@
|
|
|
4509
4668
|
"strategy": "public",
|
|
4510
4669
|
"type": "desktop"
|
|
4511
4670
|
}
|
|
4512
|
-
]
|
|
4671
|
+
],
|
|
4672
|
+
"category": "other"
|
|
4513
4673
|
},
|
|
4514
4674
|
"replicate": {
|
|
4515
4675
|
"commands": [
|
|
@@ -4531,7 +4691,8 @@
|
|
|
4531
4691
|
"strategy": "public",
|
|
4532
4692
|
"type": "web-api"
|
|
4533
4693
|
}
|
|
4534
|
-
]
|
|
4694
|
+
],
|
|
4695
|
+
"category": "ai"
|
|
4535
4696
|
},
|
|
4536
4697
|
"reuters": {
|
|
4537
4698
|
"commands": [
|
|
@@ -4547,12 +4708,6 @@
|
|
|
4547
4708
|
"strategy": "public",
|
|
4548
4709
|
"type": "web-api"
|
|
4549
4710
|
},
|
|
4550
|
-
{
|
|
4551
|
-
"name": "manifest",
|
|
4552
|
-
"description": "Reuters — international news and wire service",
|
|
4553
|
-
"strategy": "public",
|
|
4554
|
-
"type": "web-api"
|
|
4555
|
-
},
|
|
4556
4711
|
{
|
|
4557
4712
|
"name": "search",
|
|
4558
4713
|
"description": "Search Reuters articles by keyword",
|
|
@@ -4565,7 +4720,8 @@
|
|
|
4565
4720
|
"strategy": "public",
|
|
4566
4721
|
"type": "web-api"
|
|
4567
4722
|
}
|
|
4568
|
-
]
|
|
4723
|
+
],
|
|
4724
|
+
"category": "news"
|
|
4569
4725
|
},
|
|
4570
4726
|
"shotcut": {
|
|
4571
4727
|
"commands": [
|
|
@@ -4587,7 +4743,8 @@
|
|
|
4587
4743
|
"strategy": "public",
|
|
4588
4744
|
"type": "desktop"
|
|
4589
4745
|
}
|
|
4590
|
-
]
|
|
4746
|
+
],
|
|
4747
|
+
"category": "other"
|
|
4591
4748
|
},
|
|
4592
4749
|
"sinablog": {
|
|
4593
4750
|
"commands": [
|
|
@@ -4603,12 +4760,6 @@
|
|
|
4603
4760
|
"strategy": "public",
|
|
4604
4761
|
"type": "browser"
|
|
4605
4762
|
},
|
|
4606
|
-
{
|
|
4607
|
-
"name": "manifest",
|
|
4608
|
-
"description": "Sina Blog — Chinese blogging platform",
|
|
4609
|
-
"strategy": "public",
|
|
4610
|
-
"type": "web-api"
|
|
4611
|
-
},
|
|
4612
4763
|
{
|
|
4613
4764
|
"name": "search",
|
|
4614
4765
|
"description": "Search Sina Blog posts",
|
|
@@ -4621,7 +4772,8 @@
|
|
|
4621
4772
|
"strategy": "public",
|
|
4622
4773
|
"type": "browser"
|
|
4623
4774
|
}
|
|
4624
|
-
]
|
|
4775
|
+
],
|
|
4776
|
+
"category": "other"
|
|
4625
4777
|
},
|
|
4626
4778
|
"sinafinance": {
|
|
4627
4779
|
"commands": [
|
|
@@ -4655,7 +4807,8 @@
|
|
|
4655
4807
|
"strategy": "public",
|
|
4656
4808
|
"type": "web-api"
|
|
4657
4809
|
}
|
|
4658
|
-
]
|
|
4810
|
+
],
|
|
4811
|
+
"category": "finance"
|
|
4659
4812
|
},
|
|
4660
4813
|
"sketch": {
|
|
4661
4814
|
"commands": [
|
|
@@ -4677,7 +4830,8 @@
|
|
|
4677
4830
|
"strategy": "public",
|
|
4678
4831
|
"type": "desktop"
|
|
4679
4832
|
}
|
|
4680
|
-
]
|
|
4833
|
+
],
|
|
4834
|
+
"category": "other"
|
|
4681
4835
|
},
|
|
4682
4836
|
"slack": {
|
|
4683
4837
|
"commands": [
|
|
@@ -4723,7 +4877,8 @@
|
|
|
4723
4877
|
"strategy": "cookie",
|
|
4724
4878
|
"type": "web-api"
|
|
4725
4879
|
}
|
|
4726
|
-
]
|
|
4880
|
+
],
|
|
4881
|
+
"category": "other"
|
|
4727
4882
|
},
|
|
4728
4883
|
"slay-the-spire-ii": {
|
|
4729
4884
|
"commands": [
|
|
@@ -4763,7 +4918,8 @@
|
|
|
4763
4918
|
"strategy": "public",
|
|
4764
4919
|
"type": "service"
|
|
4765
4920
|
}
|
|
4766
|
-
]
|
|
4921
|
+
],
|
|
4922
|
+
"category": "other"
|
|
4767
4923
|
},
|
|
4768
4924
|
"slock": {
|
|
4769
4925
|
"commands": [
|
|
@@ -4773,7 +4929,8 @@
|
|
|
4773
4929
|
"strategy": "intercept",
|
|
4774
4930
|
"type": "browser"
|
|
4775
4931
|
}
|
|
4776
|
-
]
|
|
4932
|
+
],
|
|
4933
|
+
"category": "other"
|
|
4777
4934
|
},
|
|
4778
4935
|
"smzdm": {
|
|
4779
4936
|
"commands": [
|
|
@@ -4789,19 +4946,14 @@
|
|
|
4789
4946
|
"strategy": "public",
|
|
4790
4947
|
"type": "web-api"
|
|
4791
4948
|
},
|
|
4792
|
-
{
|
|
4793
|
-
"name": "manifest",
|
|
4794
|
-
"description": "SMZDM (Shi Me Zhi De Mai) — deals, reviews, and shopping guides",
|
|
4795
|
-
"strategy": "public",
|
|
4796
|
-
"type": "web-api"
|
|
4797
|
-
},
|
|
4798
4949
|
{
|
|
4799
4950
|
"name": "search",
|
|
4800
4951
|
"description": "Search SMZDM deals and articles",
|
|
4801
4952
|
"strategy": "public",
|
|
4802
4953
|
"type": "web-api"
|
|
4803
4954
|
}
|
|
4804
|
-
]
|
|
4955
|
+
],
|
|
4956
|
+
"category": "shopping"
|
|
4805
4957
|
},
|
|
4806
4958
|
"spotify": {
|
|
4807
4959
|
"commands": [
|
|
@@ -4829,7 +4981,8 @@
|
|
|
4829
4981
|
"strategy": "cookie",
|
|
4830
4982
|
"type": "web-api"
|
|
4831
4983
|
}
|
|
4832
|
-
]
|
|
4984
|
+
],
|
|
4985
|
+
"category": "audio"
|
|
4833
4986
|
},
|
|
4834
4987
|
"sspai": {
|
|
4835
4988
|
"commands": [
|
|
@@ -4845,7 +4998,8 @@
|
|
|
4845
4998
|
"strategy": "public",
|
|
4846
4999
|
"type": "web-api"
|
|
4847
5000
|
}
|
|
4848
|
-
]
|
|
5001
|
+
],
|
|
5002
|
+
"category": "content"
|
|
4849
5003
|
},
|
|
4850
5004
|
"stackoverflow": {
|
|
4851
5005
|
"commands": [
|
|
@@ -4885,7 +5039,8 @@
|
|
|
4885
5039
|
"strategy": "public",
|
|
4886
5040
|
"type": "web-api"
|
|
4887
5041
|
}
|
|
4888
|
-
]
|
|
5042
|
+
],
|
|
5043
|
+
"category": "dev"
|
|
4889
5044
|
},
|
|
4890
5045
|
"stagehand": {
|
|
4891
5046
|
"commands": [
|
|
@@ -4895,7 +5050,8 @@
|
|
|
4895
5050
|
"strategy": "public",
|
|
4896
5051
|
"type": "bridge"
|
|
4897
5052
|
}
|
|
4898
|
-
]
|
|
5053
|
+
],
|
|
5054
|
+
"category": "other"
|
|
4899
5055
|
},
|
|
4900
5056
|
"steam": {
|
|
4901
5057
|
"commands": [
|
|
@@ -4935,7 +5091,8 @@
|
|
|
4935
5091
|
"strategy": "public",
|
|
4936
5092
|
"type": "web-api"
|
|
4937
5093
|
}
|
|
4938
|
-
]
|
|
5094
|
+
],
|
|
5095
|
+
"category": "games"
|
|
4939
5096
|
},
|
|
4940
5097
|
"substack": {
|
|
4941
5098
|
"commands": [
|
|
@@ -4963,7 +5120,8 @@
|
|
|
4963
5120
|
"strategy": "public",
|
|
4964
5121
|
"type": "web-api"
|
|
4965
5122
|
}
|
|
4966
|
-
]
|
|
5123
|
+
],
|
|
5124
|
+
"category": "content"
|
|
4967
5125
|
},
|
|
4968
5126
|
"supabase": {
|
|
4969
5127
|
"commands": [
|
|
@@ -4973,7 +5131,8 @@
|
|
|
4973
5131
|
"strategy": "public",
|
|
4974
5132
|
"type": "bridge"
|
|
4975
5133
|
}
|
|
4976
|
-
]
|
|
5134
|
+
],
|
|
5135
|
+
"category": "other"
|
|
4977
5136
|
},
|
|
4978
5137
|
"taobao": {
|
|
4979
5138
|
"commands": [
|
|
@@ -4989,7 +5148,8 @@
|
|
|
4989
5148
|
"strategy": "intercept",
|
|
4990
5149
|
"type": "browser"
|
|
4991
5150
|
}
|
|
4992
|
-
]
|
|
5151
|
+
],
|
|
5152
|
+
"category": "shopping"
|
|
4993
5153
|
},
|
|
4994
5154
|
"techcrunch": {
|
|
4995
5155
|
"commands": [
|
|
@@ -5005,7 +5165,8 @@
|
|
|
5005
5165
|
"strategy": "public",
|
|
5006
5166
|
"type": "web-api"
|
|
5007
5167
|
}
|
|
5008
|
-
]
|
|
5168
|
+
],
|
|
5169
|
+
"category": "news"
|
|
5009
5170
|
},
|
|
5010
5171
|
"theverge": {
|
|
5011
5172
|
"commands": [
|
|
@@ -5021,7 +5182,8 @@
|
|
|
5021
5182
|
"strategy": "public",
|
|
5022
5183
|
"type": "web-api"
|
|
5023
5184
|
}
|
|
5024
|
-
]
|
|
5185
|
+
],
|
|
5186
|
+
"category": "news"
|
|
5025
5187
|
},
|
|
5026
5188
|
"threads": {
|
|
5027
5189
|
"commands": [
|
|
@@ -5037,7 +5199,8 @@
|
|
|
5037
5199
|
"strategy": "intercept",
|
|
5038
5200
|
"type": "web-api"
|
|
5039
5201
|
}
|
|
5040
|
-
]
|
|
5202
|
+
],
|
|
5203
|
+
"category": "other"
|
|
5041
5204
|
},
|
|
5042
5205
|
"tieba": {
|
|
5043
5206
|
"commands": [
|
|
@@ -5065,7 +5228,8 @@
|
|
|
5065
5228
|
"strategy": "public",
|
|
5066
5229
|
"type": "web-api"
|
|
5067
5230
|
}
|
|
5068
|
-
]
|
|
5231
|
+
],
|
|
5232
|
+
"category": "social"
|
|
5069
5233
|
},
|
|
5070
5234
|
"tiktok": {
|
|
5071
5235
|
"commands": [
|
|
@@ -5165,7 +5329,8 @@
|
|
|
5165
5329
|
"strategy": "intercept",
|
|
5166
5330
|
"type": "web-api"
|
|
5167
5331
|
}
|
|
5168
|
-
]
|
|
5332
|
+
],
|
|
5333
|
+
"category": "video"
|
|
5169
5334
|
},
|
|
5170
5335
|
"toutiao": {
|
|
5171
5336
|
"commands": [
|
|
@@ -5181,7 +5346,8 @@
|
|
|
5181
5346
|
"strategy": "intercept",
|
|
5182
5347
|
"type": "web-api"
|
|
5183
5348
|
}
|
|
5184
|
-
]
|
|
5349
|
+
],
|
|
5350
|
+
"category": "other"
|
|
5185
5351
|
},
|
|
5186
5352
|
"twitch": {
|
|
5187
5353
|
"commands": [
|
|
@@ -5209,7 +5375,8 @@
|
|
|
5209
5375
|
"strategy": "public",
|
|
5210
5376
|
"type": "web-api"
|
|
5211
5377
|
}
|
|
5212
|
-
]
|
|
5378
|
+
],
|
|
5379
|
+
"category": "video"
|
|
5213
5380
|
},
|
|
5214
5381
|
"twitter": {
|
|
5215
5382
|
"commands": [
|
|
@@ -5417,7 +5584,8 @@
|
|
|
5417
5584
|
"strategy": "intercept",
|
|
5418
5585
|
"type": "web-api"
|
|
5419
5586
|
}
|
|
5420
|
-
]
|
|
5587
|
+
],
|
|
5588
|
+
"category": "social"
|
|
5421
5589
|
},
|
|
5422
5590
|
"unsplash": {
|
|
5423
5591
|
"commands": [
|
|
@@ -5433,7 +5601,8 @@
|
|
|
5433
5601
|
"strategy": "public",
|
|
5434
5602
|
"type": "web-api"
|
|
5435
5603
|
}
|
|
5436
|
-
]
|
|
5604
|
+
],
|
|
5605
|
+
"category": "other"
|
|
5437
5606
|
},
|
|
5438
5607
|
"v2ex": {
|
|
5439
5608
|
"commands": [
|
|
@@ -5509,7 +5678,8 @@
|
|
|
5509
5678
|
"strategy": "public",
|
|
5510
5679
|
"type": "web-api"
|
|
5511
5680
|
}
|
|
5512
|
-
]
|
|
5681
|
+
],
|
|
5682
|
+
"category": "social"
|
|
5513
5683
|
},
|
|
5514
5684
|
"vercel": {
|
|
5515
5685
|
"commands": [
|
|
@@ -5519,7 +5689,8 @@
|
|
|
5519
5689
|
"strategy": "public",
|
|
5520
5690
|
"type": "bridge"
|
|
5521
5691
|
}
|
|
5522
|
-
]
|
|
5692
|
+
],
|
|
5693
|
+
"category": "other"
|
|
5523
5694
|
},
|
|
5524
5695
|
"vscode": {
|
|
5525
5696
|
"commands": [
|
|
@@ -5541,7 +5712,8 @@
|
|
|
5541
5712
|
"strategy": "public",
|
|
5542
5713
|
"type": "desktop"
|
|
5543
5714
|
}
|
|
5544
|
-
]
|
|
5715
|
+
],
|
|
5716
|
+
"category": "other"
|
|
5545
5717
|
},
|
|
5546
5718
|
"web": {
|
|
5547
5719
|
"commands": [
|
|
@@ -5551,7 +5723,8 @@
|
|
|
5551
5723
|
"strategy": "public",
|
|
5552
5724
|
"type": "web-api"
|
|
5553
5725
|
}
|
|
5554
|
-
]
|
|
5726
|
+
],
|
|
5727
|
+
"category": "utility"
|
|
5555
5728
|
},
|
|
5556
5729
|
"wechat-channels": {
|
|
5557
5730
|
"commands": [
|
|
@@ -5567,7 +5740,8 @@
|
|
|
5567
5740
|
"strategy": "intercept",
|
|
5568
5741
|
"type": "web-api"
|
|
5569
5742
|
}
|
|
5570
|
-
]
|
|
5743
|
+
],
|
|
5744
|
+
"category": "other"
|
|
5571
5745
|
},
|
|
5572
5746
|
"weibo": {
|
|
5573
5747
|
"commands": [
|
|
@@ -5631,7 +5805,8 @@
|
|
|
5631
5805
|
"strategy": "cookie",
|
|
5632
5806
|
"type": "web-api"
|
|
5633
5807
|
}
|
|
5634
|
-
]
|
|
5808
|
+
],
|
|
5809
|
+
"category": "social"
|
|
5635
5810
|
},
|
|
5636
5811
|
"weixin": {
|
|
5637
5812
|
"commands": [
|
|
@@ -5653,19 +5828,14 @@
|
|
|
5653
5828
|
"strategy": "public",
|
|
5654
5829
|
"type": "web-api"
|
|
5655
5830
|
},
|
|
5656
|
-
{
|
|
5657
|
-
"name": "manifest",
|
|
5658
|
-
"description": "WeChat Official Accounts — article publishing and search",
|
|
5659
|
-
"strategy": "cookie",
|
|
5660
|
-
"type": "web-api"
|
|
5661
|
-
},
|
|
5662
5831
|
{
|
|
5663
5832
|
"name": "search",
|
|
5664
5833
|
"description": "Search WeChat articles via Sogou",
|
|
5665
5834
|
"strategy": "cookie",
|
|
5666
5835
|
"type": "browser"
|
|
5667
5836
|
}
|
|
5668
|
-
]
|
|
5837
|
+
],
|
|
5838
|
+
"category": "other"
|
|
5669
5839
|
},
|
|
5670
5840
|
"weread": {
|
|
5671
5841
|
"commands": [
|
|
@@ -5711,7 +5881,8 @@
|
|
|
5711
5881
|
"strategy": "cookie",
|
|
5712
5882
|
"type": "web-api"
|
|
5713
5883
|
}
|
|
5714
|
-
]
|
|
5884
|
+
],
|
|
5885
|
+
"category": "content"
|
|
5715
5886
|
},
|
|
5716
5887
|
"wikipedia": {
|
|
5717
5888
|
"commands": [
|
|
@@ -5745,7 +5916,8 @@
|
|
|
5745
5916
|
"strategy": "public",
|
|
5746
5917
|
"type": "web-api"
|
|
5747
5918
|
}
|
|
5748
|
-
]
|
|
5919
|
+
],
|
|
5920
|
+
"category": "reference"
|
|
5749
5921
|
},
|
|
5750
5922
|
"wiremock": {
|
|
5751
5923
|
"commands": [
|
|
@@ -5779,7 +5951,8 @@
|
|
|
5779
5951
|
"strategy": "public",
|
|
5780
5952
|
"type": "service"
|
|
5781
5953
|
}
|
|
5782
|
-
]
|
|
5954
|
+
],
|
|
5955
|
+
"category": "other"
|
|
5783
5956
|
},
|
|
5784
5957
|
"wrangler": {
|
|
5785
5958
|
"commands": [
|
|
@@ -5789,7 +5962,8 @@
|
|
|
5789
5962
|
"strategy": "public",
|
|
5790
5963
|
"type": "bridge"
|
|
5791
5964
|
}
|
|
5792
|
-
]
|
|
5965
|
+
],
|
|
5966
|
+
"category": "other"
|
|
5793
5967
|
},
|
|
5794
5968
|
"xianyu": {
|
|
5795
5969
|
"commands": [
|
|
@@ -5811,7 +5985,8 @@
|
|
|
5811
5985
|
"strategy": "intercept",
|
|
5812
5986
|
"type": "web-api"
|
|
5813
5987
|
}
|
|
5814
|
-
]
|
|
5988
|
+
],
|
|
5989
|
+
"category": "shopping"
|
|
5815
5990
|
},
|
|
5816
5991
|
"xiaoe": {
|
|
5817
5992
|
"commands": [
|
|
@@ -5845,7 +6020,8 @@
|
|
|
5845
6020
|
"strategy": "intercept",
|
|
5846
6021
|
"type": "web-api"
|
|
5847
6022
|
}
|
|
5848
|
-
]
|
|
6023
|
+
],
|
|
6024
|
+
"category": "other"
|
|
5849
6025
|
},
|
|
5850
6026
|
"xiaohongshu": {
|
|
5851
6027
|
"commands": [
|
|
@@ -5981,7 +6157,8 @@
|
|
|
5981
6157
|
"strategy": "cookie",
|
|
5982
6158
|
"type": "web-api"
|
|
5983
6159
|
}
|
|
5984
|
-
]
|
|
6160
|
+
],
|
|
6161
|
+
"category": "social"
|
|
5985
6162
|
},
|
|
5986
6163
|
"xiaoyuzhou": {
|
|
5987
6164
|
"commands": [
|
|
@@ -6003,7 +6180,8 @@
|
|
|
6003
6180
|
"strategy": "public",
|
|
6004
6181
|
"type": "web-api"
|
|
6005
6182
|
}
|
|
6006
|
-
]
|
|
6183
|
+
],
|
|
6184
|
+
"category": "audio"
|
|
6007
6185
|
},
|
|
6008
6186
|
"xueqiu": {
|
|
6009
6187
|
"commands": [
|
|
@@ -6079,7 +6257,8 @@
|
|
|
6079
6257
|
"strategy": "cookie",
|
|
6080
6258
|
"type": "web-api"
|
|
6081
6259
|
}
|
|
6082
|
-
]
|
|
6260
|
+
],
|
|
6261
|
+
"category": "finance"
|
|
6083
6262
|
},
|
|
6084
6263
|
"yahoo-finance": {
|
|
6085
6264
|
"commands": [
|
|
@@ -6101,7 +6280,8 @@
|
|
|
6101
6280
|
"strategy": "public",
|
|
6102
6281
|
"type": "web-api"
|
|
6103
6282
|
}
|
|
6104
|
-
]
|
|
6283
|
+
],
|
|
6284
|
+
"category": "finance"
|
|
6105
6285
|
},
|
|
6106
6286
|
"ycombinator": {
|
|
6107
6287
|
"commands": [
|
|
@@ -6111,7 +6291,8 @@
|
|
|
6111
6291
|
"strategy": "public",
|
|
6112
6292
|
"type": "web-api"
|
|
6113
6293
|
}
|
|
6114
|
-
]
|
|
6294
|
+
],
|
|
6295
|
+
"category": "other"
|
|
6115
6296
|
},
|
|
6116
6297
|
"yollomi": {
|
|
6117
6298
|
"commands": [
|
|
@@ -6187,7 +6368,8 @@
|
|
|
6187
6368
|
"strategy": "intercept",
|
|
6188
6369
|
"type": "web-api"
|
|
6189
6370
|
}
|
|
6190
|
-
]
|
|
6371
|
+
],
|
|
6372
|
+
"category": "other"
|
|
6191
6373
|
},
|
|
6192
6374
|
"youtube": {
|
|
6193
6375
|
"commands": [
|
|
@@ -6239,7 +6421,8 @@
|
|
|
6239
6421
|
"strategy": "public",
|
|
6240
6422
|
"type": "web-api"
|
|
6241
6423
|
}
|
|
6242
|
-
]
|
|
6424
|
+
],
|
|
6425
|
+
"category": "video"
|
|
6243
6426
|
},
|
|
6244
6427
|
"yt-dlp": {
|
|
6245
6428
|
"commands": [
|
|
@@ -6267,7 +6450,8 @@
|
|
|
6267
6450
|
"strategy": "public",
|
|
6268
6451
|
"type": "bridge"
|
|
6269
6452
|
}
|
|
6270
|
-
]
|
|
6453
|
+
],
|
|
6454
|
+
"category": "other"
|
|
6271
6455
|
},
|
|
6272
6456
|
"yuanbao": {
|
|
6273
6457
|
"commands": [
|
|
@@ -6289,7 +6473,8 @@
|
|
|
6289
6473
|
"strategy": "intercept",
|
|
6290
6474
|
"type": "web-api"
|
|
6291
6475
|
}
|
|
6292
|
-
]
|
|
6476
|
+
],
|
|
6477
|
+
"category": "other"
|
|
6293
6478
|
},
|
|
6294
6479
|
"zhihu": {
|
|
6295
6480
|
"commands": [
|
|
@@ -6419,7 +6604,8 @@
|
|
|
6419
6604
|
"strategy": "cookie",
|
|
6420
6605
|
"type": "web-api"
|
|
6421
6606
|
}
|
|
6422
|
-
]
|
|
6607
|
+
],
|
|
6608
|
+
"category": "social"
|
|
6423
6609
|
},
|
|
6424
6610
|
"zoom": {
|
|
6425
6611
|
"commands": [
|
|
@@ -6435,7 +6621,8 @@
|
|
|
6435
6621
|
"strategy": "public",
|
|
6436
6622
|
"type": "desktop"
|
|
6437
6623
|
}
|
|
6438
|
-
]
|
|
6624
|
+
],
|
|
6625
|
+
"category": "other"
|
|
6439
6626
|
},
|
|
6440
6627
|
"zotero": {
|
|
6441
6628
|
"commands": [
|
|
@@ -6487,7 +6674,8 @@
|
|
|
6487
6674
|
"strategy": "public",
|
|
6488
6675
|
"type": "service"
|
|
6489
6676
|
}
|
|
6490
|
-
]
|
|
6677
|
+
],
|
|
6678
|
+
"category": "other"
|
|
6491
6679
|
},
|
|
6492
6680
|
"zsxq": {
|
|
6493
6681
|
"commands": [
|
|
@@ -6521,7 +6709,8 @@
|
|
|
6521
6709
|
"strategy": "cookie",
|
|
6522
6710
|
"type": "web-api"
|
|
6523
6711
|
}
|
|
6524
|
-
]
|
|
6712
|
+
],
|
|
6713
|
+
"category": "content"
|
|
6525
6714
|
}
|
|
6526
6715
|
}
|
|
6527
6716
|
}
|