@sovovs/bycli 2.1.37 → 2.1.39
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 +22 -0
- package/README.zh-CN.md +21 -0
- package/cli-manifest.json +626 -0
- package/clis/52pojie/search.js +32 -0
- package/clis/baidu/search.js +68 -0
- package/clis/bing/search.js +58 -0
- package/clis/csdn/search.js +34 -0
- package/clis/gitlab/search.js +36 -0
- package/clis/ima/ax.js +656 -0
- package/clis/ima/knowledge.js +95 -0
- package/clis/ima/native-api.js +169 -0
- package/clis/ima/native-client.js +70 -0
- package/clis/ima/utils.js +48 -0
- package/clis/so/search.js +36 -0
- package/clis/sogou/search.js +35 -0
- package/clis/threads/search.js +33 -0
- package/clis/yandex/search.js +43 -0
- package/dist/src/browser/daemon-client.d.ts +4 -1
- package/dist/src/browser/page.d.ts +6 -0
- package/dist/src/browser/page.js +20 -0
- package/dist/src/types.d.ts +6 -0
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
|
@@ -1177,6 +1177,66 @@
|
|
|
1177
1177
|
"sourceFile": "51job/search.js",
|
|
1178
1178
|
"navigateBefore": false
|
|
1179
1179
|
},
|
|
1180
|
+
{
|
|
1181
|
+
"site": "52pojie",
|
|
1182
|
+
"name": "search",
|
|
1183
|
+
"description": "Search 52pojie",
|
|
1184
|
+
"access": "read",
|
|
1185
|
+
"domain": "www.52pojie.cn",
|
|
1186
|
+
"strategy": "public",
|
|
1187
|
+
"browser": true,
|
|
1188
|
+
"args": [
|
|
1189
|
+
{
|
|
1190
|
+
"name": "keyword",
|
|
1191
|
+
"type": "str",
|
|
1192
|
+
"required": true,
|
|
1193
|
+
"positional": true,
|
|
1194
|
+
"help": "Search query"
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"name": "limit",
|
|
1198
|
+
"type": "int",
|
|
1199
|
+
"default": 10,
|
|
1200
|
+
"required": false,
|
|
1201
|
+
"help": "Number of threads (1-50)"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"name": "page",
|
|
1205
|
+
"type": "int",
|
|
1206
|
+
"default": 1,
|
|
1207
|
+
"required": false,
|
|
1208
|
+
"help": "Result page number"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"name": "section",
|
|
1212
|
+
"type": "str",
|
|
1213
|
+
"required": false,
|
|
1214
|
+
"help": "Forum section identifier"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "sort",
|
|
1218
|
+
"type": "str",
|
|
1219
|
+
"required": false,
|
|
1220
|
+
"help": "Sort order: relevance, latest, replies, views"
|
|
1221
|
+
}
|
|
1222
|
+
],
|
|
1223
|
+
"columns": [
|
|
1224
|
+
"rank",
|
|
1225
|
+
"title",
|
|
1226
|
+
"url",
|
|
1227
|
+
"snippet",
|
|
1228
|
+
"displayUrl",
|
|
1229
|
+
"source",
|
|
1230
|
+
"resultType",
|
|
1231
|
+
"author",
|
|
1232
|
+
"publishedAt",
|
|
1233
|
+
"score",
|
|
1234
|
+
"extra"
|
|
1235
|
+
],
|
|
1236
|
+
"type": "js",
|
|
1237
|
+
"modulePath": "52pojie/search.js",
|
|
1238
|
+
"sourceFile": "52pojie/search.js"
|
|
1239
|
+
},
|
|
1180
1240
|
{
|
|
1181
1241
|
"site": "aibase",
|
|
1182
1242
|
"name": "news",
|
|
@@ -1855,6 +1915,78 @@
|
|
|
1855
1915
|
"modulePath": "arxiv/search.js",
|
|
1856
1916
|
"sourceFile": "arxiv/search.js"
|
|
1857
1917
|
},
|
|
1918
|
+
{
|
|
1919
|
+
"site": "baidu",
|
|
1920
|
+
"name": "search",
|
|
1921
|
+
"description": "Search Baidu",
|
|
1922
|
+
"access": "read",
|
|
1923
|
+
"domain": "www.baidu.com",
|
|
1924
|
+
"strategy": "public",
|
|
1925
|
+
"browser": true,
|
|
1926
|
+
"args": [
|
|
1927
|
+
{
|
|
1928
|
+
"name": "keyword",
|
|
1929
|
+
"type": "str",
|
|
1930
|
+
"required": true,
|
|
1931
|
+
"positional": true,
|
|
1932
|
+
"help": "Search query"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"name": "limit",
|
|
1936
|
+
"type": "int",
|
|
1937
|
+
"default": 10,
|
|
1938
|
+
"required": false,
|
|
1939
|
+
"help": "Number of results (1-50)"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"name": "page",
|
|
1943
|
+
"type": "int",
|
|
1944
|
+
"default": 1,
|
|
1945
|
+
"required": false,
|
|
1946
|
+
"help": "Result page number"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"name": "site",
|
|
1950
|
+
"type": "str",
|
|
1951
|
+
"required": false,
|
|
1952
|
+
"help": "Restrict results to a domain"
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"name": "filetype",
|
|
1956
|
+
"type": "str",
|
|
1957
|
+
"required": false,
|
|
1958
|
+
"help": "File type: pdf, doc, xls, ppt, rtf, all"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"name": "platform",
|
|
1962
|
+
"type": "str",
|
|
1963
|
+
"required": false,
|
|
1964
|
+
"help": "Client platform: pc or mobile"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"name": "time",
|
|
1968
|
+
"type": "str",
|
|
1969
|
+
"required": false,
|
|
1970
|
+
"help": "Recent time filter understood by Baidu"
|
|
1971
|
+
}
|
|
1972
|
+
],
|
|
1973
|
+
"columns": [
|
|
1974
|
+
"rank",
|
|
1975
|
+
"title",
|
|
1976
|
+
"url",
|
|
1977
|
+
"snippet",
|
|
1978
|
+
"displayUrl",
|
|
1979
|
+
"source",
|
|
1980
|
+
"resultType",
|
|
1981
|
+
"author",
|
|
1982
|
+
"publishedAt",
|
|
1983
|
+
"score",
|
|
1984
|
+
"extra"
|
|
1985
|
+
],
|
|
1986
|
+
"type": "js",
|
|
1987
|
+
"modulePath": "baidu/search.js",
|
|
1988
|
+
"sourceFile": "baidu/search.js"
|
|
1989
|
+
},
|
|
1858
1990
|
{
|
|
1859
1991
|
"site": "baidu-scholar",
|
|
1860
1992
|
"name": "search",
|
|
@@ -3265,6 +3397,78 @@
|
|
|
3265
3397
|
"modulePath": "binance/trades.js",
|
|
3266
3398
|
"sourceFile": "binance/trades.js"
|
|
3267
3399
|
},
|
|
3400
|
+
{
|
|
3401
|
+
"site": "bing",
|
|
3402
|
+
"name": "search",
|
|
3403
|
+
"description": "Search Bing",
|
|
3404
|
+
"access": "read",
|
|
3405
|
+
"domain": "www.bing.com",
|
|
3406
|
+
"strategy": "public",
|
|
3407
|
+
"browser": true,
|
|
3408
|
+
"args": [
|
|
3409
|
+
{
|
|
3410
|
+
"name": "keyword",
|
|
3411
|
+
"type": "str",
|
|
3412
|
+
"required": true,
|
|
3413
|
+
"positional": true,
|
|
3414
|
+
"help": "Search query"
|
|
3415
|
+
},
|
|
3416
|
+
{
|
|
3417
|
+
"name": "limit",
|
|
3418
|
+
"type": "int",
|
|
3419
|
+
"default": 10,
|
|
3420
|
+
"required": false,
|
|
3421
|
+
"help": "Number of results (1-50)"
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"name": "page",
|
|
3425
|
+
"type": "int",
|
|
3426
|
+
"default": 1,
|
|
3427
|
+
"required": false,
|
|
3428
|
+
"help": "Result page number"
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
"name": "freshness",
|
|
3432
|
+
"type": "str",
|
|
3433
|
+
"required": false,
|
|
3434
|
+
"help": "Time range: day, week, month, year"
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"name": "market",
|
|
3438
|
+
"type": "str",
|
|
3439
|
+
"required": false,
|
|
3440
|
+
"help": "Market code such as en-US or zh-CN"
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"name": "answer",
|
|
3444
|
+
"type": "str",
|
|
3445
|
+
"required": false,
|
|
3446
|
+
"help": "Result scope: web, news, video, images"
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"name": "safe",
|
|
3450
|
+
"type": "str",
|
|
3451
|
+
"required": false,
|
|
3452
|
+
"help": "Safe search: off, moderate, strict"
|
|
3453
|
+
}
|
|
3454
|
+
],
|
|
3455
|
+
"columns": [
|
|
3456
|
+
"rank",
|
|
3457
|
+
"title",
|
|
3458
|
+
"url",
|
|
3459
|
+
"snippet",
|
|
3460
|
+
"displayUrl",
|
|
3461
|
+
"source",
|
|
3462
|
+
"resultType",
|
|
3463
|
+
"author",
|
|
3464
|
+
"publishedAt",
|
|
3465
|
+
"score",
|
|
3466
|
+
"extra"
|
|
3467
|
+
],
|
|
3468
|
+
"type": "js",
|
|
3469
|
+
"modulePath": "bing/search.js",
|
|
3470
|
+
"sourceFile": "bing/search.js"
|
|
3471
|
+
},
|
|
3268
3472
|
{
|
|
3269
3473
|
"site": "bloomberg",
|
|
3270
3474
|
"name": "businessweek",
|
|
@@ -6722,6 +6926,72 @@
|
|
|
6722
6926
|
"modulePath": "crates/search.js",
|
|
6723
6927
|
"sourceFile": "crates/search.js"
|
|
6724
6928
|
},
|
|
6929
|
+
{
|
|
6930
|
+
"site": "csdn",
|
|
6931
|
+
"name": "search",
|
|
6932
|
+
"description": "Search CSDN",
|
|
6933
|
+
"access": "read",
|
|
6934
|
+
"domain": "so.csdn.net",
|
|
6935
|
+
"strategy": "public",
|
|
6936
|
+
"browser": true,
|
|
6937
|
+
"args": [
|
|
6938
|
+
{
|
|
6939
|
+
"name": "keyword",
|
|
6940
|
+
"type": "str",
|
|
6941
|
+
"required": true,
|
|
6942
|
+
"positional": true,
|
|
6943
|
+
"help": "Search query"
|
|
6944
|
+
},
|
|
6945
|
+
{
|
|
6946
|
+
"name": "limit",
|
|
6947
|
+
"type": "int",
|
|
6948
|
+
"default": 10,
|
|
6949
|
+
"required": false,
|
|
6950
|
+
"help": "Number of results (1-50)"
|
|
6951
|
+
},
|
|
6952
|
+
{
|
|
6953
|
+
"name": "page",
|
|
6954
|
+
"type": "int",
|
|
6955
|
+
"default": 1,
|
|
6956
|
+
"required": false,
|
|
6957
|
+
"help": "Result page number"
|
|
6958
|
+
},
|
|
6959
|
+
{
|
|
6960
|
+
"name": "content-type",
|
|
6961
|
+
"type": "str",
|
|
6962
|
+
"required": false,
|
|
6963
|
+
"help": "Content type: all, blog, download, course"
|
|
6964
|
+
},
|
|
6965
|
+
{
|
|
6966
|
+
"name": "sort",
|
|
6967
|
+
"type": "str",
|
|
6968
|
+
"required": false,
|
|
6969
|
+
"help": "Sort order: relevance, latest, hot"
|
|
6970
|
+
},
|
|
6971
|
+
{
|
|
6972
|
+
"name": "time",
|
|
6973
|
+
"type": "str",
|
|
6974
|
+
"required": false,
|
|
6975
|
+
"help": "Time range: day, week, month, year"
|
|
6976
|
+
}
|
|
6977
|
+
],
|
|
6978
|
+
"columns": [
|
|
6979
|
+
"rank",
|
|
6980
|
+
"title",
|
|
6981
|
+
"url",
|
|
6982
|
+
"snippet",
|
|
6983
|
+
"displayUrl",
|
|
6984
|
+
"source",
|
|
6985
|
+
"resultType",
|
|
6986
|
+
"author",
|
|
6987
|
+
"publishedAt",
|
|
6988
|
+
"score",
|
|
6989
|
+
"extra"
|
|
6990
|
+
],
|
|
6991
|
+
"type": "js",
|
|
6992
|
+
"modulePath": "csdn/search.js",
|
|
6993
|
+
"sourceFile": "csdn/search.js"
|
|
6994
|
+
},
|
|
6725
6995
|
{
|
|
6726
6996
|
"site": "ctrip",
|
|
6727
6997
|
"name": "flight",
|
|
@@ -11535,6 +11805,72 @@
|
|
|
11535
11805
|
"modulePath": "github/search.js",
|
|
11536
11806
|
"sourceFile": "github/search.js"
|
|
11537
11807
|
},
|
|
11808
|
+
{
|
|
11809
|
+
"site": "gitlab",
|
|
11810
|
+
"name": "search",
|
|
11811
|
+
"description": "Search GitLab",
|
|
11812
|
+
"access": "read",
|
|
11813
|
+
"domain": "gitlab.com",
|
|
11814
|
+
"strategy": "public",
|
|
11815
|
+
"browser": true,
|
|
11816
|
+
"args": [
|
|
11817
|
+
{
|
|
11818
|
+
"name": "keyword",
|
|
11819
|
+
"type": "str",
|
|
11820
|
+
"required": true,
|
|
11821
|
+
"positional": true,
|
|
11822
|
+
"help": "Search query"
|
|
11823
|
+
},
|
|
11824
|
+
{
|
|
11825
|
+
"name": "limit",
|
|
11826
|
+
"type": "int",
|
|
11827
|
+
"default": 10,
|
|
11828
|
+
"required": false,
|
|
11829
|
+
"help": "Number of results (1-50)"
|
|
11830
|
+
},
|
|
11831
|
+
{
|
|
11832
|
+
"name": "page",
|
|
11833
|
+
"type": "int",
|
|
11834
|
+
"default": 1,
|
|
11835
|
+
"required": false,
|
|
11836
|
+
"help": "Result page number"
|
|
11837
|
+
},
|
|
11838
|
+
{
|
|
11839
|
+
"name": "scope",
|
|
11840
|
+
"type": "str",
|
|
11841
|
+
"required": false,
|
|
11842
|
+
"help": "Search scope: projects, issues, merge_requests, commits, blobs, users"
|
|
11843
|
+
},
|
|
11844
|
+
{
|
|
11845
|
+
"name": "order-by",
|
|
11846
|
+
"type": "str",
|
|
11847
|
+
"required": false,
|
|
11848
|
+
"help": "Order by: created_at, updated_at, latest_activity_at"
|
|
11849
|
+
},
|
|
11850
|
+
{
|
|
11851
|
+
"name": "sort",
|
|
11852
|
+
"type": "str",
|
|
11853
|
+
"required": false,
|
|
11854
|
+
"help": "Sort direction: asc or desc"
|
|
11855
|
+
}
|
|
11856
|
+
],
|
|
11857
|
+
"columns": [
|
|
11858
|
+
"rank",
|
|
11859
|
+
"title",
|
|
11860
|
+
"url",
|
|
11861
|
+
"snippet",
|
|
11862
|
+
"displayUrl",
|
|
11863
|
+
"source",
|
|
11864
|
+
"resultType",
|
|
11865
|
+
"author",
|
|
11866
|
+
"publishedAt",
|
|
11867
|
+
"score",
|
|
11868
|
+
"extra"
|
|
11869
|
+
],
|
|
11870
|
+
"type": "js",
|
|
11871
|
+
"modulePath": "gitlab/search.js",
|
|
11872
|
+
"sourceFile": "gitlab/search.js"
|
|
11873
|
+
},
|
|
11538
11874
|
{
|
|
11539
11875
|
"site": "google",
|
|
11540
11876
|
"name": "news",
|
|
@@ -13210,6 +13546,38 @@
|
|
|
13210
13546
|
"sourceFile": "hupu/unlike.js",
|
|
13211
13547
|
"navigateBefore": false
|
|
13212
13548
|
},
|
|
13549
|
+
{
|
|
13550
|
+
"site": "ima",
|
|
13551
|
+
"name": "knowledge",
|
|
13552
|
+
"description": "按名称或 ID 获取 ima 知识库中的文章标题、URL 与文件夹路径",
|
|
13553
|
+
"access": "read",
|
|
13554
|
+
"domain": "ima.qq.com",
|
|
13555
|
+
"strategy": "cookie",
|
|
13556
|
+
"browser": true,
|
|
13557
|
+
"args": [
|
|
13558
|
+
{
|
|
13559
|
+
"name": "knowledgeBase",
|
|
13560
|
+
"type": "string",
|
|
13561
|
+
"required": true,
|
|
13562
|
+
"positional": true,
|
|
13563
|
+
"help": "知识库的完整名称或 ima 页面中的 knowledgeBaseId"
|
|
13564
|
+
}
|
|
13565
|
+
],
|
|
13566
|
+
"columns": [
|
|
13567
|
+
"knowledgeBaseId",
|
|
13568
|
+
"knowledgeBase",
|
|
13569
|
+
"folderPath",
|
|
13570
|
+
"title",
|
|
13571
|
+
"url",
|
|
13572
|
+
"contentType",
|
|
13573
|
+
"addedDate"
|
|
13574
|
+
],
|
|
13575
|
+
"defaultFormat": "json",
|
|
13576
|
+
"type": "js",
|
|
13577
|
+
"modulePath": "ima/knowledge.js",
|
|
13578
|
+
"sourceFile": "ima/knowledge.js",
|
|
13579
|
+
"navigateBefore": false
|
|
13580
|
+
},
|
|
13213
13581
|
{
|
|
13214
13582
|
"site": "imdb",
|
|
13215
13583
|
"name": "person",
|
|
@@ -23468,6 +23836,132 @@
|
|
|
23468
23836
|
"sourceFile": "smzdm/search.js",
|
|
23469
23837
|
"navigateBefore": "https://www.smzdm.com"
|
|
23470
23838
|
},
|
|
23839
|
+
{
|
|
23840
|
+
"site": "so",
|
|
23841
|
+
"name": "search",
|
|
23842
|
+
"description": "Search 360 Search",
|
|
23843
|
+
"access": "read",
|
|
23844
|
+
"domain": "so.com",
|
|
23845
|
+
"strategy": "public",
|
|
23846
|
+
"browser": true,
|
|
23847
|
+
"args": [
|
|
23848
|
+
{
|
|
23849
|
+
"name": "keyword",
|
|
23850
|
+
"type": "str",
|
|
23851
|
+
"required": true,
|
|
23852
|
+
"positional": true,
|
|
23853
|
+
"help": "Search query"
|
|
23854
|
+
},
|
|
23855
|
+
{
|
|
23856
|
+
"name": "limit",
|
|
23857
|
+
"type": "int",
|
|
23858
|
+
"default": 10,
|
|
23859
|
+
"required": false,
|
|
23860
|
+
"help": "Number of results (1-50)"
|
|
23861
|
+
},
|
|
23862
|
+
{
|
|
23863
|
+
"name": "page",
|
|
23864
|
+
"type": "int",
|
|
23865
|
+
"default": 1,
|
|
23866
|
+
"required": false,
|
|
23867
|
+
"help": "Result page number"
|
|
23868
|
+
},
|
|
23869
|
+
{
|
|
23870
|
+
"name": "type",
|
|
23871
|
+
"type": "str",
|
|
23872
|
+
"required": false,
|
|
23873
|
+
"help": "Result type: web, news, video, image"
|
|
23874
|
+
},
|
|
23875
|
+
{
|
|
23876
|
+
"name": "safe",
|
|
23877
|
+
"type": "str",
|
|
23878
|
+
"required": false,
|
|
23879
|
+
"help": "Safe search: off or on"
|
|
23880
|
+
}
|
|
23881
|
+
],
|
|
23882
|
+
"columns": [
|
|
23883
|
+
"rank",
|
|
23884
|
+
"title",
|
|
23885
|
+
"url",
|
|
23886
|
+
"snippet",
|
|
23887
|
+
"displayUrl",
|
|
23888
|
+
"source",
|
|
23889
|
+
"resultType",
|
|
23890
|
+
"author",
|
|
23891
|
+
"publishedAt",
|
|
23892
|
+
"score",
|
|
23893
|
+
"extra"
|
|
23894
|
+
],
|
|
23895
|
+
"type": "js",
|
|
23896
|
+
"modulePath": "so/search.js",
|
|
23897
|
+
"sourceFile": "so/search.js"
|
|
23898
|
+
},
|
|
23899
|
+
{
|
|
23900
|
+
"site": "sogou",
|
|
23901
|
+
"name": "search",
|
|
23902
|
+
"description": "Search Sogou",
|
|
23903
|
+
"access": "read",
|
|
23904
|
+
"domain": "sogou.com",
|
|
23905
|
+
"strategy": "public",
|
|
23906
|
+
"browser": true,
|
|
23907
|
+
"args": [
|
|
23908
|
+
{
|
|
23909
|
+
"name": "keyword",
|
|
23910
|
+
"type": "str",
|
|
23911
|
+
"required": true,
|
|
23912
|
+
"positional": true,
|
|
23913
|
+
"help": "Search query"
|
|
23914
|
+
},
|
|
23915
|
+
{
|
|
23916
|
+
"name": "limit",
|
|
23917
|
+
"type": "int",
|
|
23918
|
+
"default": 10,
|
|
23919
|
+
"required": false,
|
|
23920
|
+
"help": "Number of results (1-50)"
|
|
23921
|
+
},
|
|
23922
|
+
{
|
|
23923
|
+
"name": "page",
|
|
23924
|
+
"type": "int",
|
|
23925
|
+
"default": 1,
|
|
23926
|
+
"required": false,
|
|
23927
|
+
"help": "Result page number"
|
|
23928
|
+
},
|
|
23929
|
+
{
|
|
23930
|
+
"name": "type",
|
|
23931
|
+
"type": "str",
|
|
23932
|
+
"required": false,
|
|
23933
|
+
"help": "Result type: web, news, video, image"
|
|
23934
|
+
},
|
|
23935
|
+
{
|
|
23936
|
+
"name": "time",
|
|
23937
|
+
"type": "str",
|
|
23938
|
+
"required": false,
|
|
23939
|
+
"help": "Time range: day, week, month, year"
|
|
23940
|
+
},
|
|
23941
|
+
{
|
|
23942
|
+
"name": "sort",
|
|
23943
|
+
"type": "str",
|
|
23944
|
+
"required": false,
|
|
23945
|
+
"help": "Sort order: relevance or date"
|
|
23946
|
+
}
|
|
23947
|
+
],
|
|
23948
|
+
"columns": [
|
|
23949
|
+
"rank",
|
|
23950
|
+
"title",
|
|
23951
|
+
"url",
|
|
23952
|
+
"snippet",
|
|
23953
|
+
"displayUrl",
|
|
23954
|
+
"source",
|
|
23955
|
+
"resultType",
|
|
23956
|
+
"author",
|
|
23957
|
+
"publishedAt",
|
|
23958
|
+
"score",
|
|
23959
|
+
"extra"
|
|
23960
|
+
],
|
|
23961
|
+
"type": "js",
|
|
23962
|
+
"modulePath": "sogou/search.js",
|
|
23963
|
+
"sourceFile": "sogou/search.js"
|
|
23964
|
+
},
|
|
23471
23965
|
{
|
|
23472
23966
|
"site": "spotify",
|
|
23473
23967
|
"name": "auth",
|
|
@@ -24718,6 +25212,72 @@
|
|
|
24718
25212
|
"sourceFile": "tdx/hot-rank.js",
|
|
24719
25213
|
"navigateBefore": true
|
|
24720
25214
|
},
|
|
25215
|
+
{
|
|
25216
|
+
"site": "threads",
|
|
25217
|
+
"name": "search",
|
|
25218
|
+
"description": "Search Threads",
|
|
25219
|
+
"access": "read",
|
|
25220
|
+
"domain": "www.threads.com",
|
|
25221
|
+
"strategy": "public",
|
|
25222
|
+
"browser": true,
|
|
25223
|
+
"args": [
|
|
25224
|
+
{
|
|
25225
|
+
"name": "keyword",
|
|
25226
|
+
"type": "str",
|
|
25227
|
+
"required": true,
|
|
25228
|
+
"positional": true,
|
|
25229
|
+
"help": "Search query"
|
|
25230
|
+
},
|
|
25231
|
+
{
|
|
25232
|
+
"name": "limit",
|
|
25233
|
+
"type": "int",
|
|
25234
|
+
"default": 10,
|
|
25235
|
+
"required": false,
|
|
25236
|
+
"help": "Number of posts (1-50)"
|
|
25237
|
+
},
|
|
25238
|
+
{
|
|
25239
|
+
"name": "page",
|
|
25240
|
+
"type": "int",
|
|
25241
|
+
"default": 1,
|
|
25242
|
+
"required": false,
|
|
25243
|
+
"help": "Result page number"
|
|
25244
|
+
},
|
|
25245
|
+
{
|
|
25246
|
+
"name": "author",
|
|
25247
|
+
"type": "str",
|
|
25248
|
+
"required": false,
|
|
25249
|
+
"help": "Filter by author handle"
|
|
25250
|
+
},
|
|
25251
|
+
{
|
|
25252
|
+
"name": "since",
|
|
25253
|
+
"type": "str",
|
|
25254
|
+
"required": false,
|
|
25255
|
+
"help": "Only posts on or after YYYY-MM-DD"
|
|
25256
|
+
},
|
|
25257
|
+
{
|
|
25258
|
+
"name": "until",
|
|
25259
|
+
"type": "str",
|
|
25260
|
+
"required": false,
|
|
25261
|
+
"help": "Only posts on or before YYYY-MM-DD"
|
|
25262
|
+
}
|
|
25263
|
+
],
|
|
25264
|
+
"columns": [
|
|
25265
|
+
"rank",
|
|
25266
|
+
"title",
|
|
25267
|
+
"url",
|
|
25268
|
+
"snippet",
|
|
25269
|
+
"displayUrl",
|
|
25270
|
+
"source",
|
|
25271
|
+
"resultType",
|
|
25272
|
+
"author",
|
|
25273
|
+
"publishedAt",
|
|
25274
|
+
"score",
|
|
25275
|
+
"extra"
|
|
25276
|
+
],
|
|
25277
|
+
"type": "js",
|
|
25278
|
+
"modulePath": "threads/search.js",
|
|
25279
|
+
"sourceFile": "threads/search.js"
|
|
25280
|
+
},
|
|
24721
25281
|
{
|
|
24722
25282
|
"site": "ths",
|
|
24723
25283
|
"name": "hot-rank",
|
|
@@ -31443,6 +32003,72 @@
|
|
|
31443
32003
|
"sourceFile": "yahoo-finance/quote.js",
|
|
31444
32004
|
"navigateBefore": "https://finance.yahoo.com"
|
|
31445
32005
|
},
|
|
32006
|
+
{
|
|
32007
|
+
"site": "yandex",
|
|
32008
|
+
"name": "search",
|
|
32009
|
+
"description": "Search Yandex",
|
|
32010
|
+
"access": "read",
|
|
32011
|
+
"domain": "yandex.com",
|
|
32012
|
+
"strategy": "public",
|
|
32013
|
+
"browser": true,
|
|
32014
|
+
"args": [
|
|
32015
|
+
{
|
|
32016
|
+
"name": "keyword",
|
|
32017
|
+
"type": "str",
|
|
32018
|
+
"required": true,
|
|
32019
|
+
"positional": true,
|
|
32020
|
+
"help": "Search query"
|
|
32021
|
+
},
|
|
32022
|
+
{
|
|
32023
|
+
"name": "limit",
|
|
32024
|
+
"type": "int",
|
|
32025
|
+
"default": 10,
|
|
32026
|
+
"required": false,
|
|
32027
|
+
"help": "Number of results (1-50)"
|
|
32028
|
+
},
|
|
32029
|
+
{
|
|
32030
|
+
"name": "page",
|
|
32031
|
+
"type": "int",
|
|
32032
|
+
"default": 1,
|
|
32033
|
+
"required": false,
|
|
32034
|
+
"help": "Result page number"
|
|
32035
|
+
},
|
|
32036
|
+
{
|
|
32037
|
+
"name": "lr",
|
|
32038
|
+
"type": "str",
|
|
32039
|
+
"required": false,
|
|
32040
|
+
"help": "Yandex region code"
|
|
32041
|
+
},
|
|
32042
|
+
{
|
|
32043
|
+
"name": "lang",
|
|
32044
|
+
"type": "str",
|
|
32045
|
+
"required": false,
|
|
32046
|
+
"help": "Language code"
|
|
32047
|
+
},
|
|
32048
|
+
{
|
|
32049
|
+
"name": "sort",
|
|
32050
|
+
"type": "str",
|
|
32051
|
+
"required": false,
|
|
32052
|
+
"help": "Sort order: relevance or date"
|
|
32053
|
+
}
|
|
32054
|
+
],
|
|
32055
|
+
"columns": [
|
|
32056
|
+
"rank",
|
|
32057
|
+
"title",
|
|
32058
|
+
"url",
|
|
32059
|
+
"snippet",
|
|
32060
|
+
"displayUrl",
|
|
32061
|
+
"source",
|
|
32062
|
+
"resultType",
|
|
32063
|
+
"author",
|
|
32064
|
+
"publishedAt",
|
|
32065
|
+
"score",
|
|
32066
|
+
"extra"
|
|
32067
|
+
],
|
|
32068
|
+
"type": "js",
|
|
32069
|
+
"modulePath": "yandex/search.js",
|
|
32070
|
+
"sourceFile": "yandex/search.js"
|
|
32071
|
+
},
|
|
31446
32072
|
{
|
|
31447
32073
|
"site": "yollomi",
|
|
31448
32074
|
"name": "background",
|