配置过程

1. 全局配置 vs 项目配置

重要发现: MCP 服务器应该配置在项目级别,而不是全局配置。

  • ❌ 全局配置路径C:\Users\Administrator\.config\opencode\opencode.json

    • 在全局配置中添加 env 环境变量会导致 OpenCode 无法启动
    • 全局配置的 MCP 服务器可能无法被项目正确加载
  • ✅ 项目配置路径项目根目录/.opencode/mcp.json

    • 推荐使用项目级别配置
    • 每个项目可以有独立的 MCP 服务器配置
    • 配置更改后需要重启 OpenCode 生效
2. 最终可用配置

在项目根目录创建 .opencode/mcp.json 文件:

{
  "mcpServers": {
    "browser": {
      "command": "npx",
      "args": ["-y", "@executeautomation/playwright-mcp-server"]
    }
  }
}

配置说明:

  • command: "npx" - 使用 npx 自动下载并运行 MCP 服务器
  • args: ["-y", "包名"] - -y 参数自动确认安装
  • MCP 服务器名称(如 browser)可以自定义,但调用时需要使用 playwright(来自 skill)
3. Chrome 路径问题

问题: Chrome 安装在非标准路径 C:\Users\Administrator\AppData\Local\Google\Chrome\Bin

Playwright 期望路径: C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe

解决方案: 将 Chrome 文件复制到 Playwright 期望的标准路径

# 使用 PowerShell 复制整个 Chrome 目录
Copy-Item 'C:\Users\Administrator\AppData\Local\Google\Chrome\Bin\*' `
  'C:\Users\Administrator\AppData\Local\Google\Chrome\Application\' `
  -Recurse -Force

验证安装:

# 检查 Chrome 是否在正确位置
dir "C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe"

# 测试 Chrome 版本
"C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe" --version
4. 配置后的操作流程
  1. 创建配置文件 - 在项目根目录创建 .opencode/mcp.json
  2. 添加 MCP 配置 - 参考上面的配置示例
  3. 重启 OpenCode - 完全退出后重新启动(不是重新加载)
  4. 等待初始化 - 首次启动会自动下载 MCP 服务器包(10-30秒)
  5. 测试功能 - 尝试简单的页面导航操作

测试的 MCP 服务器方案

尝试过的方案(按时间顺序)
方案 包名 结果 问题原因
1️⃣ chrometools-mcp chrometools-mcp ❌ 失败 配置问题,无法启动
2️⃣ Puppeteer MCP (官方) @modelcontextprotocol/server-puppeteer ❌ 失败 官方已标记为 deprecated
3️⃣ Puppeteer MCP (社区) puppeteer-mcp ❌ 失败 浏览器路径检测问题
4️⃣ Playwright MCP @executeautomation/playwright-mcp-server ✅ 成功 最终可用方案
推荐方案:Playwright MCP Server

包名: @executeautomation/playwright-mcp-server

版本: v1.0.10+

优势:

  • ✅ 功能强大,支持 Chrome、Firefox、Safari、Edge
  • ✅ 社区活跃,持续维护(5.2k+ stars)
  • ✅ 与 OpenCode 集成良好
  • ✅ 自动安装浏览器,无需手动配置
  • ✅ 支持 143 种设备预设(移动端、平板等)
  • ✅ 文档完善,示例丰富

GitHub: https://github.com/executeautomation/mcp-playwright

安装方式:

# 通过 npx 自动安装(推荐)
npx -y @executeautomation/playwright-mcp-server

# 或全局安装
npm install -g @executeautomation/playwright-mcp-server

可用的浏览器操作

工具名称说明

重要: Playwright MCP 的工具名称与配置名称不同:

  • 配置中的服务器名称:browser(可自定义)
  • 实际调用的工具前缀:playwright_ 或 browser_(取决于 skill)
  • 通过 playwright skill 调用时使用 browser_ 前缀
1. 页面导航
// 打开网页
skill_mcp({
  mcp_name: "playwright",
  tool_name: "browser_navigate",
  arguments: {"url": "https://www.baidu.com"}
})

参数:

  • url (必需) - 要访问的网页地址
  • waitUntil (可选) - 等待条件:loaddomcontentloadednetworkidle

示例:

// 等待网络空闲后再继续
browser_navigate({
  url: "https://example.com",
  waitUntil: "networkidle"
})
2. 元素交互
填写表单
// 填写输入框
skill_mcp({
  mcp_name: "playwright",
  tool_name: "browser_fill",
  arguments: {
    "selector": "input[name='wd']",
    "text": "搜索内容"
  }
})

参数:

  • selector (必需) - CSS 选择器
  • text (必需) - 要填写的文本内容
点击元素

https://github.com/yjdfhge/d/issues/1599
https://github.com/yjdfhge/d/issues/1598
https://github.com/yjdfhge/d/issues/1597
https://github.com/yjdfhge/d/issues/1596
https://github.com/yjdfhge/d/issues/1595
https://github.com/yjdfhge/d/issues/1594
https://github.com/yjdfhge/d/issues/1593
https://github.com/yjdfhge/d/issues/1592
https://github.com/yjdfhge/d/issues/1591
https://github.com/yjdfhge/d/issues/1590
https://github.com/yjdfhge/d/issues/1589
https://github.com/yjdfhge/d/issues/1588
https://github.com/yjdfhge/d/issues/1587
https://github.com/yjdfhge/d/issues/1586
https://github.com/yjdfhge/d/issues/1585
https://github.com/yjdfhge/d/issues/1584
https://github.com/yjdfhge/d/issues/1583
https://github.com/yjdfhge/d/issues/1582
https://github.com/yjdfhge/d/issues/1581
https://github.com/yjdfhge/d/issues/1580
https://github.com/yjdfhge/d/issues/1579
https://github.com/yjdfhge/d/issues/1578
https://github.com/yjdfhge/d/issues/1577
https://github.com/yjdfhge/d/issues/1576
https://github.com/yjdfhge/d/issues/1575
https://github.com/yjdfhge/d/issues/1574
https://github.com/yjdfhge/d/issues/1573
https://github.com/yjdfhge/d/issues/1572
https://github.com/yjdfhge/d/issues/1571
https://github.com/yjdfhge/d/issues/1570
https://github.com/yjdfhge/d/issues/1569
https://github.com/yjdfhge/d/issues/1568
https://github.com/yjdfhge/d/issues/1567
https://github.com/yjdfhge/d/issues/1566
https://github.com/yjdfhge/d/issues/1565
https://github.com/yjdfhge/d/issues/1564
https://github.com/yjdfhge/d/issues/1563
https://github.com/yjdfhge/d/issues/1562
https://github.com/yjdfhge/d/issues/1561
https://github.com/yjdfhge/d/issues/1560
https://github.com/yjdfhge/d/issues/1559
https://github.com/yjdfhge/d/issues/1558
https://github.com/yjdfhge/d/issues/1557
https://github.com/yjdfhge/d/issues/1556
https://github.com/yjdfhge/d/issues/1555
https://github.com/yjdfhge/d/issues/1554
https://github.com/yjdfhge/d/issues/1553
https://github.com/yjdfhge/d/issues/1552
https://github.com/yjdfhge/d/issues/1551
https://github.com/yjdfhge/d/issues/1550
https://github.com/yjdfhge/d/issues/1549
https://github.com/yjdfhge/d/issues/1548
https://github.com/yjdfhge/d/issues/1547
https://github.com/yjdfhge/d/issues/1546
https://github.com/yjdfhge/d/issues/1545
https://github.com/yjdfhge/d/issues/1544
https://github.com/yjdfhge/d/issues/1543
https://github.com/yjdfhge/d/issues/1542
https://github.com/yjdfhge/d/issues/1541
https://github.com/yjdfhge/d/issues/1540
https://github.com/yjdfhge/d/issues/1539
https://github.com/yjdfhge/d/issues/1538
https://github.com/yjdfhge/d/issues/1537
https://github.com/yjdfhge/d/issues/1536
https://github.com/yjdfhge/d/issues/1535
https://github.com/yjdfhge/d/issues/1534
https://github.com/yjdfhge/d/issues/1533
https://github.com/yjdfhge/d/issues/1532
https://github.com/yjdfhge/d/issues/1531
https://github.com/yjdfhge/d/issues/1530
https://github.com/yjdfhge/d/issues/1529
https://github.com/yjdfhge/d/issues/1528
https://github.com/yjdfhge/d/issues/1527
https://github.com/yjdfhge/d/issues/1526
https://github.com/yjdfhge/d/issues/1525
https://github.com/yjdfhge/d/issues/1524
https://github.com/yjdfhge/d/issues/1523
https://github.com/yjdfhge/d/issues/1522
https://github.com/yjdfhge/d/issues/1521
https://github.com/yjdfhge/d/issues/1520
https://github.com/yjdfhge/d/issues/1519
https://github.com/yjdfhge/d/issues/1518
https://github.com/yjdfhge/d/issues/1517
https://github.com/yjdfhge/d/issues/1516
https://github.com/yjdfhge/d/issues/1515
https://github.com/yjdfhge/d/issues/1514
https://github.com/yjdfhge/d/issues/1513
https://github.com/yjdfhge/d/issues/1512
https://github.com/yjdfhge/d/issues/1511
https://github.com/yjdfhge/d/issues/1510
https://github.com/yjdfhge/d/issues/1509
https://github.com/yjdfhge/d/issues/1508
https://github.com/yjdfhge/d/issues/1507
https://github.com/yjdfhge/d/issues/1506
https://github.com/yjdfhge/d/issues/1505
https://github.com/yjdfhge/d/issues/1504
https://github.com/yjdfhge/d/issues/1503
https://github.com/yjdfhge/d/issues/1502
https://github.com/yjdfhge/d/issues/1501
https://github.com/yjdfhge/d/issues/1500
https://github.com/yjdfhge/d/issues/1499
https://github.com/yjdfhge/d/issues/1498
https://github.com/yjdfhge/d/issues/1497
https://github.com/yjdfhge/d/issues/1496
https://github.com/yjdfhge/d/issues/1495
https://github.com/yjdfhge/d/issues/1494
https://github.com/yjdfhge/d/issues/1493
https://github.com/yjdfhge/d/issues/1492
https://github.com/yjdfhge/d/issues/1491
https://github.com/yjdfhge/d/issues/1490
https://github.com/yjdfhge/d/issues/1489
https://github.com/yjdfhge/d/issues/1488
https://github.com/yjdfhge/d/issues/1487
https://github.com/yjdfhge/d/issues/1486
https://github.com/yjdfhge/d/issues/1485
https://github.com/yjdfhge/d/issues/1484
https://github.com/yjdfhge/d/issues/1483
https://github.com/yjdfhge/d/issues/1482
https://github.com/yjdfhge/d/issues/1481
https://github.com/yjdfhge/d/issues/1480
https://github.com/yjdfhge/d/issues/1479
https://github.com/yjdfhge/d/issues/1478
https://github.com/yjdfhge/d/issues/1477
https://github.com/yjdfhge/d/issues/1476
https://github.com/yjdfhge/d/issues/1475
https://github.com/yjdfhge/d/issues/1474
https://github.com/yjdfhge/d/issues/1473
https://github.com/yjdfhge/d/issues/1472
https://github.com/yjdfhge/d/issues/1471
https://github.com/yjdfhge/d/issues/1470
https://github.com/yjdfhge/d/issues/1469
https://github.com/yjdfhge/d/issues/1468
https://github.com/yjdfhge/d/issues/1467
https://github.com/yjdfhge/d/issues/1466
https://github.com/yjdfhge/d/issues/1465
https://github.com/yjdfhge/d/issues/1464
https://github.com/yjdfhge/d/issues/1463
https://github.com/yjdfhge/d/issues/1462
https://github.com/yjdfhge/d/issues/1461
https://github.com/yjdfhge/d/issues/1460
https://github.com/yjdfhge/d/issues/1459
https://github.com/yjdfhge/d/issues/1458
https://github.com/yjdfhge/d/issues/1457
https://github.com/yjdfhge/d/issues/1456
https://github.com/yjdfhge/d/issues/1455
https://github.com/yjdfhge/d/issues/1454
https://github.com/yjdfhge/d/issues/1453
https://github.com/yjdfhge/d/issues/1452
https://github.com/yjdfhge/d/issues/1451
https://github.com/yjdfhge/d/issues/1450
https://github.com/yjdfhge/d/issues/1449
https://github.com/yjdfhge/d/issues/1448
https://github.com/yjdfhge/d/issues/1447
https://github.com/yjdfhge/d/issues/1446
https://github.com/yjdfhge/d/issues/1445
https://github.com/yjdfhge/d/issues/1444
https://github.com/yjdfhge/d/issues/1443
https://github.com/yjdfhge/d/issues/1442
https://github.com/yjdfhge/d/issues/1441
https://github.com/yjdfhge/d/issues/1440
https://github.com/yjdfhge/d/issues/1439
https://github.com/yjdfhge/d/issues/1438
https://github.com/yjdfhge/d/issues/1437
https://github.com/yjdfhge/d/issues/1436
https://github.com/yjdfhge/d/issues/1435
https://github.com/yjdfhge/d/issues/1434
https://github.com/yjdfhge/d/issues/1433
https://github.com/yjdfhge/d/issues/1432
https://github.com/yjdfhge/d/issues/1431
https://github.com/yjdfhge/d/issues/1430
https://github.com/yjdfhge/d/issues/1429
https://github.com/yjdfhge/d/issues/1428
https://github.com/yjdfhge/d/issues/1427
https://github.com/yjdfhge/d/issues/1426
https://github.com/yjdfhge/d/issues/1425
https://github.com/yjdfhge/d/issues/1424
https://github.com/yjdfhge/d/issues/1423
https://github.com/yjdfhge/d/issues/1422
https://github.com/yjdfhge/d/issues/1421
https://github.com/yjdfhge/d/issues/1420
https://github.com/yjdfhge/d/issues/1419
https://github.com/yjdfhge/d/issues/1418
https://github.com/yjdfhge/d/issues/1417
https://github.com/yjdfhge/d/issues/1416
https://github.com/yjdfhge/d/issues/1415
https://github.com/yjdfhge/d/issues/1414
https://github.com/yjdfhge/d/issues/1413
https://github.com/yjdfhge/d/issues/1412
https://github.com/yjdfhge/d/issues/1411
https://github.com/yjdfhge/d/issues/1410
https://github.com/yjdfhge/d/issues/1409
https://github.com/yjdfhge/d/issues/1408
https://github.com/yjdfhge/d/issues/1407
https://github.com/yjdfhge/d/issues/1406
https://github.com/yjdfhge/d/issues/1405
https://github.com/yjdfhge/d/issues/1404
https://github.com/yjdfhge/d/issues/1403
https://github.com/yjdfhge/d/issues/1402
https://github.com/yjdfhge/d/issues/1401
https://github.com/yjdfhge/d/issues/1400
https://github.com/yjdfhge/d/issues/1399
https://github.com/yjdfhge/d/issues/1398
https://github.com/yjdfhge/d/issues/1397
https://github.com/yjdfhge/d/issues/1396
https://github.com/yjdfhge/d/issues/1395
https://github.com/yjdfhge/d/issues/1394
https://github.com/yjdfhge/d/issues/1393
https://github.com/yjdfhge/d/issues/1392
https://github.com/yjdfhge/d/issues/1391
https://github.com/yjdfhge/d/issues/1390
https://github.com/yjdfhge/d/issues/1389
https://github.com/yjdfhge/d/issues/1388
https://github.com/yjdfhge/d/issues/1387
https://github.com/yjdfhge/d/issues/1386
https://github.com/yjdfhge/d/issues/1385
https://github.com/yjdfhge/d/issues/1384
https://github.com/yjdfhge/d/issues/1383
https://github.com/yjdfhge/d/issues/1382
https://github.com/yjdfhge/d/issues/1381
https://github.com/yjdfhge/d/issues/1380
https://github.com/yjdfhge/d/issues/1379
https://github.com/yjdfhge/d/issues/1378
https://github.com/yjdfhge/d/issues/1377
https://github.com/yjdfhge/d/issues/1376
https://github.com/yjdfhge/d/issues/1375
https://github.com/yjdfhge/d/issues/1374
https://github.com/yjdfhge/d/issues/1373
https://github.com/yjdfhge/d/issues/1372
https://github.com/yjdfhge/d/issues/1371
https://github.com/yjdfhge/d/issues/1370
https://github.com/yjdfhge/d/issues/1369
https://github.com/yjdfhge/d/issues/1368
https://github.com/yjdfhge/d/issues/1367
https://github.com/yjdfhge/d/issues/1366
https://github.com/yjdfhge/d/issues/1365
https://github.com/yjdfhge/d/issues/1364
https://github.com/yjdfhge/d/issues/1363
https://github.com/yjdfhge/d/issues/1362
https://github.com/yjdfhge/d/issues/1361
https://github.com/yjdfhge/d/issues/1360
https://github.com/yjdfhge/d/issues/1359
https://github.com/yjdfhge/d/issues/1358
https://github.com/yjdfhge/d/issues/1357
https://github.com/yjdfhge/d/issues/1356
https://github.com/yjdfhge/d/issues/1355
https://github.com/yjdfhge/d/issues/1354
https://github.com/yjdfhge/d/issues/1353
https://github.com/yjdfhge/d/issues/1352
https://github.com/yjdfhge/d/issues/1351
https://github.com/yjdfhge/d/issues/1350
https://github.com/yjdfhge/d/issues/1349
https://github.com/yjdfhge/d/issues/1348
https://github.com/yjdfhge/d/issues/1347
https://github.com/yjdfhge/d/issues/1346
https://github.com/yjdfhge/d/issues/1345
https://github.com/yjdfhge/d/issues/1344
https://github.com/yjdfhge/d/issues/1343
https://github.com/yjdfhge/d/issues/1342
https://github.com/yjdfhge/d/issues/1341
https://github.com/yjdfhge/d/issues/1340
https://github.com/yjdfhge/d/issues/1339
https://github.com/yjdfhge/d/issues/1338
https://github.com/yjdfhge/d/issues/1337
https://github.com/yjdfhge/d/issues/1336
https://github.com/yjdfhge/d/issues/1335
https://github.com/yjdfhge/d/issues/1334
https://github.com/yjdfhge/d/issues/1333
https://github.com/yjdfhge/d/issues/1332
https://github.com/yjdfhge/d/issues/1331
https://github.com/yjdfhge/d/issues/1330
https://github.com/yjdfhge/d/issues/1329
https://github.com/yjdfhge/d/issues/1328
https://github.com/yjdfhge/d/issues/1327
https://github.com/yjdfhge/d/issues/1326
https://github.com/yjdfhge/d/issues/1325
https://github.com/yjdfhge/d/issues/1324
https://github.com/yjdfhge/d/issues/1323
https://github.com/yjdfhge/d/issues/1322
https://github.com/yjdfhge/d/issues/1321
https://github.com/yjdfhge/d/issues/1320
https://github.com/yjdfhge/d/issues/1319
https://github.com/yjdfhge/d/issues/1318
https://github.com/yjdfhge/d/issues/1317
https://github.com/yjdfhge/d/issues/1316
https://github.com/yjdfhge/d/issues/1315
https://github.com/yjdfhge/d/issues/1314
https://github.com/yjdfhge/d/issues/1313
https://github.com/yjdfhge/d/issues/1312
https://github.com/yjdfhge/d/issues/1311
https://github.com/yjdfhge/d/issues/1310
https://github.com/yjdfhge/d/issues/1309
https://github.com/yjdfhge/d/issues/1308
https://github.com/yjdfhge/d/issues/1307
https://github.com/yjdfhge/d/issues/1306
https://github.com/yjdfhge/d/issues/1305
https://github.com/yjdfhge/d/issues/1304
https://github.com/yjdfhge/d/issues/1303
https://github.com/yjdfhge/d/issues/1302
https://github.com/yjdfhge/d/issues/1301
https://github.com/yjdfhge/d/issues/1300
https://github.com/yjdfhge/d/issues/1299
https://github.com/yjdfhge/d/issues/1298
https://github.com/yjdfhge/d/issues/1297
https://github.com/yjdfhge/d/issues/1296
https://github.com/yjdfhge/d/issues/1295
https://github.com/yjdfhge/d/issues/1294
https://github.com/yjdfhge/d/issues/1293
https://github.com/yjdfhge/d/issues/1292
https://github.com/yjdfhge/d/issues/1291
https://github.com/yjdfhge/d/issues/1290
https://github.com/yjdfhge/d/issues/1289
https://github.com/yjdfhge/d/issues/1288
https://github.com/yjdfhge/d/issues/1287
https://github.com/yjdfhge/d/issues/1286
https://github.com/yjdfhge/d/issues/1285
https://github.com/yjdfhge/d/issues/1284
https://github.com/yjdfhge/d/issues/1283
https://github.com/yjdfhge/d/issues/1282
https://github.com/yjdfhge/d/issues/1281
https://github.com/yjdfhge/d/issues/1280
https://github.com/yjdfhge/d/issues/1279
https://github.com/yjdfhge/d/issues/1278
https://github.com/yjdfhge/d/issues/1277
https://github.com/yjdfhge/d/issues/1276
https://github.com/yjdfhge/d/issues/1275
https://github.com/yjdfhge/d/issues/1274
https://github.com/yjdfhge/d/issues/1273
https://github.com/yjdfhge/d/issues/1272
https://github.com/yjdfhge/d/issues/1271
https://github.com/yjdfhge/d/issues/1270
https://github.com/yjdfhge/d/issues/1269
https://github.com/yjdfhge/d/issues/1268
https://github.com/yjdfhge/d/issues/1267
https://github.com/yjdfhge/d/issues/1266
https://github.com/yjdfhge/d/issues/1265
https://github.com/yjdfhge/d/issues/1264
https://github.com/yjdfhge/d/issues/1263
https://github.com/yjdfhge/d/issues/1262
https://github.com/yjdfhge/d/issues/1261
https://github.com/yjdfhge/d/issues/1260
https://github.com/yjdfhge/d/issues/1259
https://github.com/yjdfhge/d/issues/1258
https://github.com/yjdfhge/d/issues/1257
https://github.com/yjdfhge/d/issues/1256
https://github.com/yjdfhge/d/issues/1255
https://github.com/yjdfhge/d/issues/1254
https://github.com/yjdfhge/d/issues/1253
https://github.com/yjdfhge/d/issues/1252
https://github.com/yjdfhge/d/issues/1251
https://github.com/yjdfhge/d/issues/1250
https://github.com/yjdfhge/d/issues/1249
https://github.com/yjdfhge/d/issues/1248
https://github.com/yjdfhge/d/issues/1247
https://github.com/yjdfhge/d/issues/1246
https://github.com/yjdfhge/d/issues/1245
https://github.com/yjdfhge/d/issues/1244
https://github.com/yjdfhge/d/issues/1243
https://github.com/yjdfhge/d/issues/1242
https://github.com/yjdfhge/d/issues/1241
https://github.com/yjdfhge/d/issues/1240
https://github.com/yjdfhge/d/issues/1239
https://github.com/yjdfhge/d/issues/1238
https://github.com/yjdfhge/d/issues/1237
https://github.com/yjdfhge/d/issues/1236
https://github.com/yjdfhge/d/issues/1235
https://github.com/yjdfhge/d/issues/1234
https://github.com/yjdfhge/d/issues/1233
https://github.com/yjdfhge/d/issues/1232
https://github.com/yjdfhge/d/issues/1231
https://github.com/yjdfhge/d/issues/1230
https://github.com/yjdfhge/d/issues/1229
https://github.com/yjdfhge/d/issues/1228
https://github.com/yjdfhge/d/issues/1227
https://github.com/yjdfhge/d/issues/1226
https://github.com/yjdfhge/d/issues/1225
https://github.com/yjdfhge/d/issues/1224
https://github.com/yjdfhge/d/issues/1223
https://github.com/yjdfhge/d/issues/1222
https://github.com/yjdfhge/d/issues/1221
https://github.com/yjdfhge/d/issues/1220
https://github.com/yjdfhge/d/issues/1219
https://github.com/yjdfhge/d/issues/1218
https://github.com/yjdfhge/d/issues/1217
https://github.com/yjdfhge/d/issues/1216
https://github.com/yjdfhge/d/issues/1215
https://github.com/yjdfhge/d/issues/1214
https://github.com/yjdfhge/d/issues/1213
https://github.com/yjdfhge/d/issues/1212
https://github.com/yjdfhge/d/issues/1211
https://github.com/yjdfhge/d/issues/1210
https://github.com/yjdfhge/d/issues/1209
https://github.com/yjdfhge/d/issues/1208
https://github.com/yjdfhge/d/issues/1207
https://github.com/yjdfhge/d/issues/1206
https://github.com/yjdfhge/d/issues/1205
https://github.com/yjdfhge/d/issues/1204
https://github.com/yjdfhge/d/issues/1203
https://github.com/yjdfhge/d/issues/1202
https://github.com/yjdfhge/d/issues/1201
https://github.com/yjdfhge/d/issues/1200
https://github.com/yjdfhge/d/issues/1199
https://github.com/yjdfhge/d/issues/1198
https://github.com/yjdfhge/d/issues/1197
https://github.com/yjdfhge/d/issues/1196
https://github.com/yjdfhge/d/issues/1195
https://github.com/yjdfhge/d/issues/1194
https://github.com/yjdfhge/d/issues/1193
https://github.com/yjdfhge/d/issues/1192
https://github.com/yjdfhge/d/issues/1191
https://github.com/yjdfhge/d/issues/1190
https://github.com/yjdfhge/d/issues/1189
https://github.com/yjdfhge/d/issues/1188
https://github.com/yjdfhge/d/issues/1187
https://github.com/yjdfhge/d/issues/1186
https://github.com/yjdfhge/d/issues/1185
https://github.com/yjdfhge/d/issues/1184
https://github.com/yjdfhge/d/issues/1183
https://github.com/yjdfhge/d/issues/1182
https://github.com/yjdfhge/d/issues/1181
https://github.com/yjdfhge/d/issues/1180
https://github.com/yjdfhge/d/issues/1179
https://github.com/yjdfhge/d/issues/1178
https://github.com/yjdfhge/d/issues/1177
https://github.com/yjdfhge/d/issues/1176
https://github.com/yjdfhge/d/issues/1175
https://github.com/yjdfhge/d/issues/1174
https://github.com/yjdfhge/d/issues/1173
https://github.com/yjdfhge/d/issues/1172
https://github.com/yjdfhge/d/issues/1171
https://github.com/yjdfhge/d/issues/1170
https://github.com/yjdfhge/d/issues/1169
https://github.com/yjdfhge/d/issues/1168
https://github.com/yjdfhge/d/issues/1167
https://github.com/yjdfhge/d/issues/1166
https://github.com/yjdfhge/d/issues/1165
https://github.com/yjdfhge/d/issues/1164
https://github.com/yjdfhge/d/issues/1163
https://github.com/yjdfhge/d/issues/1162
https://github.com/yjdfhge/d/issues/1161
https://github.com/yjdfhge/d/issues/1160
https://github.com/yjdfhge/d/issues/1159
https://github.com/yjdfhge/d/issues/1158
https://github.com/yjdfhge/d/issues/1157
https://github.com/yjdfhge/d/issues/1156
https://github.com/yjdfhge/d/issues/1155
https://github.com/yjdfhge/d/issues/1154
https://github.com/yjdfhge/d/issues/1153
https://github.com/yjdfhge/d/issues/1152
https://github.com/yjdfhge/d/issues/1151
https://github.com/yjdfhge/d/issues/1150
https://github.com/yjdfhge/d/issues/1149
https://github.com/yjdfhge/d/issues/1148
https://github.com/yjdfhge/d/issues/1147
https://github.com/yjdfhge/d/issues/1146
https://github.com/yjdfhge/d/issues/1145
https://github.com/yjdfhge/d/issues/1144
https://github.com/yjdfhge/d/issues/1143
https://github.com/yjdfhge/d/issues/1142
https://github.com/yjdfhge/d/issues/1141
https://github.com/yjdfhge/d/issues/1140
https://github.com/yjdfhge/d/issues/1139
https://github.com/yjdfhge/d/issues/1138
https://github.com/yjdfhge/d/issues/1137
https://github.com/yjdfhge/d/issues/1136
https://github.com/yjdfhge/d/issues/1135
https://github.com/yjdfhge/d/issues/1134
https://github.com/yjdfhge/d/issues/1133
https://github.com/yjdfhge/d/issues/1132
https://github.com/yjdfhge/d/issues/1131
https://github.com/yjdfhge/d/issues/1130
https://github.com/yjdfhge/d/issues/1129
https://github.com/yjdfhge/d/issues/1128
https://github.com/yjdfhge/d/issues/1127
https://github.com/yjdfhge/d/issues/1126
https://github.com/yjdfhge/d/issues/1125
https://github.com/yjdfhge/d/issues/1124
https://github.com/yjdfhge/d/issues/1123
https://github.com/yjdfhge/d/issues/1122
https://github.com/yjdfhge/d/issues/1121
https://github.com/yjdfhge/d/issues/1120
https://github.com/yjdfhge/d/issues/1119
https://github.com/yjdfhge/d/issues/1118
https://github.com/yjdfhge/d/issues/1117
https://github.com/yjdfhge/d/issues/1116
https://github.com/yjdfhge/d/issues/1115
https://github.com/yjdfhge/d/issues/1114
https://github.com/yjdfhge/d/issues/1113
https://github.com/yjdfhge/d/issues/1112
https://github.com/yjdfhge/d/issues/1111
https://github.com/yjdfhge/d/issues/1110
https://github.com/yjdfhge/d/issues/1109
https://github.com/yjdfhge/d/issues/1108
https://github.com/yjdfhge/d/issues/1107
https://github.com/yjdfhge/d/issues/1106
https://github.com/yjdfhge/d/issues/1105
https://github.com/yjdfhge/d/issues/1104
https://github.com/yjdfhge/d/issues/1103
https://github.com/yjdfhge/d/issues/1102
https://github.com/yjdfhge/d/issues/1101
https://github.com/yjdfhge/d/issues/1100
https://github.com/yjdfhge/d/issues/1099
https://github.com/yjdfhge/d/issues/1098
https://github.com/yjdfhge/d/issues/1097
https://github.com/yjdfhge/d/issues/1096
https://github.com/yjdfhge/d/issues/1095
https://github.com/yjdfhge/d/issues/1094
https://github.com/yjdfhge/d/issues/1093
https://github.com/yjdfhge/d/issues/1092
https://github.com/yjdfhge/d/issues/1091
https://github.com/yjdfhge/d/issues/1090
https://github.com/yjdfhge/d/issues/1089
https://github.com/yjdfhge/d/issues/1088
https://github.com/yjdfhge/d/issues/1087
https://github.com/yjdfhge/d/issues/1086
https://github.com/yjdfhge/d/issues/1085
https://github.com/yjdfhge/d/issues/1084
https://github.com/yjdfhge/d/issues/1083
https://github.com/yjdfhge/d/issues/1082
https://github.com/yjdfhge/d/issues/1081
https://github.com/yjdfhge/d/issues/1080
https://github.com/yjdfhge/d/issues/1079
https://github.com/yjdfhge/d/issues/1078
https://github.com/yjdfhge/d/issues/1077
https://github.com/yjdfhge/d/issues/1076
https://github.com/yjdfhge/d/issues/1075
https://github.com/yjdfhge/d/issues/1074
https://github.com/yjdfhge/d/issues/1073
https://github.com/yjdfhge/d/issues/1072
https://github.com/yjdfhge/d/issues/1071
https://github.com/yjdfhge/d/issues/1070
https://github.com/yjdfhge/d/issues/1069
https://github.com/yjdfhge/d/issues/1068
https://github.com/yjdfhge/d/issues/1067
https://github.com/yjdfhge/d/issues/1066
https://github.com/yjdfhge/d/issues/1065
https://github.com/yjdfhge/d/issues/1064
https://github.com/yjdfhge/d/issues/1063
https://github.com/yjdfhge/d/issues/1062
https://github.com/yjdfhge/d/issues/1061
https://github.com/yjdfhge/d/issues/1060
https://github.com/yjdfhge/d/issues/1059
https://github.com/yjdfhge/d/issues/1058
https://github.com/yjdfhge/d/issues/1057
https://github.com/yjdfhge/d/issues/1056
https://github.com/yjdfhge/d/issues/1055
https://github.com/yjdfhge/d/issues/1054
https://github.com/yjdfhge/d/issues/1053
https://github.com/yjdfhge/d/issues/1052
https://github.com/yjdfhge/d/issues/1051
https://github.com/yjdfhge/d/issues/1050
https://github.com/yjdfhge/d/issues/1049
https://github.com/yjdfhge/d/issues/1048
https://github.com/yjdfhge/d/issues/1047
https://github.com/yjdfhge/d/issues/1046
https://github.com/yjdfhge/d/issues/1045
https://github.com/yjdfhge/d/issues/1044
https://github.com/yjdfhge/d/issues/1043
https://github.com/yjdfhge/d/issues/1042
https://github.com/yjdfhge/d/issues/1041
https://github.com/yjdfhge/d/issues/1040
https://github.com/yjdfhge/d/issues/1039
https://github.com/yjdfhge/d/issues/1038
https://github.com/yjdfhge/d/issues/1037
https://github.com/yjdfhge/d/issues/1036
https://github.com/yjdfhge/d/issues/1035
https://github.com/yjdfhge/d/issues/1034
https://github.com/yjdfhge/d/issues/1033
https://github.com/yjdfhge/d/issues/1032
https://github.com/yjdfhge/d/issues/1031
https://github.com/yjdfhge/d/issues/1030
https://github.com/yjdfhge/d/issues/1029
https://github.com/yjdfhge/d/issues/1028
https://github.com/yjdfhge/d/issues/1027
https://github.com/yjdfhge/d/issues/1026
https://github.com/yjdfhge/d/issues/1025
https://github.com/yjdfhge/d/issues/1024
https://github.com/yjdfhge/d/issues/1023
https://github.com/yjdfhge/d/issues/1022
https://github.com/yjdfhge/d/issues/1021
https://github.com/yjdfhge/d/issues/1020
https://github.com/yjdfhge/d/issues/1019
https://github.com/yjdfhge/d/issues/1018
https://github.com/yjdfhge/d/issues/1017
https://github.com/yjdfhge/d/issues/1016
https://github.com/yjdfhge/d/issues/1015
https://github.com/yjdfhge/d/issues/1014
https://github.com/yjdfhge/d/issues/1013
https://github.com/yjdfhge/d/issues/1012
https://github.com/yjdfhge/d/issues/1011
https://github.com/yjdfhge/d/issues/1010
https://github.com/yjdfhge/d/issues/1009
https://github.com/yjdfhge/d/issues/1008
https://github.com/yjdfhge/d/issues/1007
https://github.com/yjdfhge/d/issues/1006
https://github.com/yjdfhge/d/issues/1005
https://github.com/yjdfhge/d/issues/1004
https://github.com/yjdfhge/d/issues/1003
https://github.com/yjdfhge/d/issues/1002
https://github.com/yjdfhge/d/issues/1001
https://github.com/yjdfhge/d/issues/1000
https://github.com/yjdfhge/d/issues/999
https://github.com/yjdfhge/d/issues/998
https://github.com/yjdfhge/d/issues/997
https://github.com/yjdfhge/d/issues/996
https://github.com/yjdfhge/d/issues/995
https://github.com/yjdfhge/d/issues/994
https://github.com/yjdfhge/d/issues/993
https://github.com/yjdfhge/d/issues/992
https://github.com/yjdfhge/d/issues/991
https://github.com/yjdfhge/d/issues/990
https://github.com/yjdfhge/d/issues/989
https://github.com/yjdfhge/d/issues/988
https://github.com/yjdfhge/d/issues/987
https://github.com/yjdfhge/d/issues/986
https://github.com/yjdfhge/d/issues/985
https://github.com/yjdfhge/d/issues/984
https://github.com/yjdfhge/d/issues/983
https://github.com/yjdfhge/d/issues/982
https://github.com/yjdfhge/d/issues/981
https://github.com/yjdfhge/d/issues/980
https://github.com/yjdfhge/d/issues/979
https://github.com/yjdfhge/d/issues/978
https://github.com/yjdfhge/d/issues/977
https://github.com/yjdfhge/d/issues/976
https://github.com/yjdfhge/d/issues/975
https://github.com/yjdfhge/d/issues/974
https://github.com/yjdfhge/d/issues/973
https://github.com/yjdfhge/d/issues/972
https://github.com/yjdfhge/d/issues/971
https://github.com/yjdfhge/d/issues/970
https://github.com/yjdfhge/d/issues/969
https://github.com/yjdfhge/d/issues/968
https://github.com/yjdfhge/d/issues/967
https://github.com/yjdfhge/d/issues/966
https://github.com/yjdfhge/d/issues/965
https://github.com/yjdfhge/d/issues/964
https://github.com/yjdfhge/d/issues/963
https://github.com/yjdfhge/d/issues/962
https://github.com/yjdfhge/d/issues/961
https://github.com/yjdfhge/d/issues/960
https://github.com/yjdfhge/d/issues/959
https://github.com/yjdfhge/d/issues/958
https://github.com/yjdfhge/d/issues/957
https://github.com/yjdfhge/d/issues/956
https://github.com/yjdfhge/d/issues/955
https://github.com/yjdfhge/d/issues/954
https://github.com/yjdfhge/d/issues/953
https://github.com/yjdfhge/d/issues/952
https://github.com/yjdfhge/d/issues/951
https://github.com/yjdfhge/d/issues/950
https://github.com/yjdfhge/d/issues/949
https://github.com/yjdfhge/d/issues/948
https://github.com/yjdfhge/d/issues/947
https://github.com/yjdfhge/d/issues/946
https://github.com/yjdfhge/d/issues/945
https://github.com/yjdfhge/d/issues/944
https://github.com/yjdfhge/d/issues/943
https://github.com/yjdfhge/d/issues/942
https://github.com/yjdfhge/d/issues/941
https://github.com/yjdfhge/d/issues/940
https://github.com/yjdfhge/d/issues/939
https://github.com/yjdfhge/d/issues/938
https://github.com/yjdfhge/d/issues/937
https://github.com/yjdfhge/d/issues/936
https://github.com/yjdfhge/d/issues/935
https://github.com/yjdfhge/d/issues/934
https://github.com/yjdfhge/d/issues/933
https://github.com/yjdfhge/d/issues/932
https://github.com/yjdfhge/d/issues/931
https://github.com/yjdfhge/d/issues/930
https://github.com/yjdfhge/d/issues/929
https://github.com/yjdfhge/d/issues/928
https://github.com/yjdfhge/d/issues/927
https://github.com/yjdfhge/d/issues/926
https://github.com/yjdfhge/d/issues/925
https://github.com/yjdfhge/d/issues/924
https://github.com/yjdfhge/d/issues/923
https://github.com/yjdfhge/d/issues/922
https://github.com/yjdfhge/d/issues/921
https://github.com/yjdfhge/d/issues/920
https://github.com/yjdfhge/d/issues/919
https://github.com/yjdfhge/d/issues/918
https://github.com/yjdfhge/d/issues/917
https://github.com/yjdfhge/d/issues/916
https://github.com/yjdfhge/d/issues/915
https://github.com/yjdfhge/d/issues/914
https://github.com/yjdfhge/d/issues/913
https://github.com/yjdfhge/d/issues/912
https://github.com/yjdfhge/d/issues/911
https://github.com/yjdfhge/d/issues/910
https://github.com/yjdfhge/d/issues/909
https://github.com/yjdfhge/d/issues/908
https://github.com/yjdfhge/d/issues/907
https://github.com/yjdfhge/d/issues/906
https://github.com/yjdfhge/d/issues/905
https://github.com/yjdfhge/d/issues/904
https://github.com/yjdfhge/d/issues/903
https://github.com/yjdfhge/d/issues/902
https://github.com/yjdfhge/d/issues/901
https://github.com/yjdfhge/d/issues/900
https://github.com/yjdfhge/d/issues/899
https://github.com/yjdfhge/d/issues/898
https://github.com/yjdfhge/d/issues/897
https://github.com/yjdfhge/d/issues/896
https://github.com/yjdfhge/d/issues/895
https://github.com/yjdfhge/d/issues/894
https://github.com/yjdfhge/d/issues/893
https://github.com/yjdfhge/d/issues/892
https://github.com/yjdfhge/d/issues/891
https://github.com/yjdfhge/d/issues/890
https://github.com/yjdfhge/d/issues/889
https://github.com/yjdfhge/d/issues/888
https://github.com/yjdfhge/d/issues/887
https://github.com/yjdfhge/d/issues/886
https://github.com/yjdfhge/d/issues/885
https://github.com/yjdfhge/d/issues/884
https://github.com/yjdfhge/d/issues/883
https://github.com/yjdfhge/d/issues/882
https://github.com/yjdfhge/d/issues/881
https://github.com/yjdfhge/d/issues/880
https://github.com/yjdfhge/d/issues/879
https://github.com/yjdfhge/d/issues/878
https://github.com/yjdfhge/d/issues/877
https://github.com/yjdfhge/d/issues/876
https://github.com/yjdfhge/d/issues/875
https://github.com/yjdfhge/d/issues/874
https://github.com/yjdfhge/d/issues/873
https://github.com/yjdfhge/d/issues/872
https://github.com/yjdfhge/d/issues/871
https://github.com/yjdfhge/d/issues/870
https://github.com/yjdfhge/d/issues/869
https://github.com/yjdfhge/d/issues/868
https://github.com/yjdfhge/d/issues/867
https://github.com/yjdfhge/d/issues/866
https://github.com/yjdfhge/d/issues/865
https://github.com/yjdfhge/d/issues/864
https://github.com/yjdfhge/d/issues/863
https://github.com/yjdfhge/d/issues/862
https://github.com/yjdfhge/d/issues/861
https://github.com/yjdfhge/d/issues/860
https://github.com/yjdfhge/d/issues/859
https://github.com/yjdfhge/d/issues/858
https://github.com/yjdfhge/d/issues/857
https://github.com/yjdfhge/d/issues/856
https://github.com/yjdfhge/d/issues/855
https://github.com/yjdfhge/d/issues/854
https://github.com/yjdfhge/d/issues/853
https://github.com/yjdfhge/d/issues/852
https://github.com/yjdfhge/d/issues/851
https://github.com/yjdfhge/d/issues/850
https://github.com/yjdfhge/d/issues/849
https://github.com/yjdfhge/d/issues/848
https://github.com/yjdfhge/d/issues/847
https://github.com/yjdfhge/d/issues/846
https://github.com/yjdfhge/d/issues/845
https://github.com/yjdfhge/d/issues/844
https://github.com/yjdfhge/d/issues/843
https://github.com/yjdfhge/d/issues/842
https://github.com/yjdfhge/d/issues/841
https://github.com/yjdfhge/d/issues/840
https://github.com/yjdfhge/d/issues/839
https://github.com/yjdfhge/d/issues/838
https://github.com/yjdfhge/d/issues/837
https://github.com/yjdfhge/d/issues/836
https://github.com/yjdfhge/d/issues/835
https://github.com/yjdfhge/d/issues/834
https://github.com/yjdfhge/d/issues/833
https://github.com/yjdfhge/d/issues/832
https://github.com/yjdfhge/d/issues/831
https://github.com/yjdfhge/d/issues/830
https://github.com/yjdfhge/d/issues/829
https://github.com/yjdfhge/d/issues/828
https://github.com/yjdfhge/d/issues/827
https://github.com/yjdfhge/d/issues/826
https://github.com/yjdfhge/d/issues/825
https://github.com/yjdfhge/d/issues/824
https://github.com/yjdfhge/d/issues/823
https://github.com/yjdfhge/d/issues/822
https://github.com/yjdfhge/d/issues/821
https://github.com/yjdfhge/d/issues/820
https://github.com/yjdfhge/d/issues/819
https://github.com/yjdfhge/d/issues/818
https://github.com/yjdfhge/d/issues/817
https://github.com/yjdfhge/d/issues/816
https://github.com/yjdfhge/d/issues/815
https://github.com/yjdfhge/d/issues/814
https://github.com/yjdfhge/d/issues/813
https://github.com/yjdfhge/d/issues/812
https://github.com/yjdfhge/d/issues/811
https://github.com/yjdfhge/d/issues/810
https://github.com/yjdfhge/d/issues/809
https://github.com/yjdfhge/d/issues/808
https://github.com/yjdfhge/d/issues/807
https://github.com/yjdfhge/d/issues/806
https://github.com/yjdfhge/d/issues/805
https://github.com/yjdfhge/d/issues/804
https://github.com/yjdfhge/d/issues/803
https://github.com/yjdfhge/d/issues/802
https://github.com/yjdfhge/d/issues/801
https://github.com/yjdfhge/d/issues/800
https://github.com/hdeewo-so/hu/issues/5068
https://github.com/hdeewo-so/hu/issues/5067
https://github.com/hdeewo-so/hu/issues/5066
https://github.com/hdeewo-so/hu/issues/5065
https://github.com/hdeewo-so/hu/issues/5064
https://github.com/hdeewo-so/hu/issues/5063
https://github.com/hdeewo-so/hu/issues/5062
https://github.com/hdeewo-so/hu/issues/5061
https://github.com/hdeewo-so/hu/issues/5060
https://github.com/hdeewo-so/hu/issues/5059
https://github.com/hdeewo-so/hu/issues/5058
https://github.com/hdeewo-so/hu/issues/5057
https://github.com/hdeewo-so/hu/issues/5056
https://github.com/hdeewo-so/hu/issues/5055
https://github.com/hdeewo-so/hu/issues/5054
https://github.com/hdeewo-so/hu/issues/5053
https://github.com/hdeewo-so/hu/issues/5052
https://github.com/hdeewo-so/hu/issues/5051
https://github.com/hdeewo-so/hu/issues/5050
https://github.com/hdeewo-so/hu/issues/5049
https://github.com/hdeewo-so/hu/issues/5048
https://github.com/hdeewo-so/hu/issues/5047
https://github.com/hdeewo-so/hu/issues/5046
https://github.com/hdeewo-so/hu/issues/5045
https://github.com/hdeewo-so/hu/issues/5044
https://github.com/hdeewo-so/hu/issues/5043
https://github.com/hdeewo-so/hu/issues/5042
https://github.com/hdeewo-so/hu/issues/5041
https://github.com/hdeewo-so/hu/issues/5040
https://github.com/hdeewo-so/hu/issues/5039
https://github.com/hdeewo-so/hu/issues/5038
https://github.com/hdeewo-so/hu/issues/5037
https://github.com/hdeewo-so/hu/issues/5036
https://github.com/hdeewo-so/hu/issues/5035
https://github.com/hdeewo-so/hu/issues/5034
https://github.com/hdeewo-so/hu/issues/5033
https://github.com/hdeewo-so/hu/issues/5032
https://github.com/hdeewo-so/hu/issues/5031
https://github.com/hdeewo-so/hu/issues/5030
https://github.com/hdeewo-so/hu/issues/5029
https://github.com/hdeewo-so/hu/issues/5028
https://github.com/hdeewo-so/hu/issues/5027
https://github.com/hdeewo-so/hu/issues/5026
https://github.com/hdeewo-so/hu/issues/5025
https://github.com/hdeewo-so/hu/issues/5024
https://github.com/hdeewo-so/hu/issues/5023
https://github.com/hdeewo-so/hu/issues/5022
https://github.com/hdeewo-so/hu/issues/5021
https://github.com/hdeewo-so/hu/issues/5020
https://github.com/hdeewo-so/hu/issues/5019
https://github.com/hdeewo-so/hu/issues/5018
https://github.com/hdeewo-so/hu/issues/5017
https://github.com/hdeewo-so/hu/issues/5016
https://github.com/hdeewo-so/hu/issues/5015
https://github.com/hdeewo-so/hu/issues/5014
https://github.com/hdeewo-so/hu/issues/5013
https://github.com/hdeewo-so/hu/issues/5012
https://github.com/hdeewo-so/hu/issues/5011
https://github.com/hdeewo-so/hu/issues/5010
https://github.com/hdeewo-so/hu/issues/5009
https://github.com/hdeewo-so/hu/issues/5008
https://github.com/hdeewo-so/hu/issues/5007
https://github.com/hdeewo-so/hu/issues/5006
https://github.com/hdeewo-so/hu/issues/5005
https://github.com/hdeewo-so/hu/issues/5004
https://github.com/hdeewo-so/hu/issues/5003
https://github.com/hdeewo-so/hu/issues/5002
https://github.com/hdeewo-so/hu/issues/5001
https://github.com/hdeewo-so/hu/issues/5000
https://github.com/hdeewo-so/hu/issues/4999
https://github.com/hdeewo-so/hu/issues/4998
https://github.com/hdeewo-so/hu/issues/4997
https://github.com/hdeewo-so/hu/issues/4996
https://github.com/hdeewo-so/hu/issues/4995
https://github.com/hdeewo-so/hu/issues/4994
https://github.com/hdeewo-so/hu/issues/4993
https://github.com/hdeewo-so/hu/issues/4992
https://github.com/hdeewo-so/hu/issues/4991
https://github.com/hdeewo-so/hu/issues/4990
https://github.com/hdeewo-so/hu/issues/4989
https://github.com/hdeewo-so/hu/issues/4988
https://github.com/hdeewo-so/hu/issues/4987
https://github.com/hdeewo-so/hu/issues/4986
https://github.com/hdeewo-so/hu/issues/4985
https://github.com/hdeewo-so/hu/issues/4984
https://github.com/hdeewo-so/hu/issues/4983
https://github.com/hdeewo-so/hu/issues/4982
https://github.com/hdeewo-so/hu/issues/4981
https://github.com/hdeewo-so/hu/issues/4980
https://github.com/hdeewo-so/hu/issues/4979
https://github.com/hdeewo-so/hu/issues/4978
https://github.com/hdeewo-so/hu/issues/4977
https://github.com/hdeewo-so/hu/issues/4976
https://github.com/hdeewo-so/hu/issues/4975
https://github.com/hdeewo-so/hu/issues/4974
https://github.com/hdeewo-so/hu/issues/4973
https://github.com/hdeewo-so/hu/issues/4972
https://github.com/hdeewo-so/hu/issues/4971
https://github.com/hdeewo-so/hu/issues/4970
https://github.com/hdeewo-so/hu/issues/4969
https://github.com/hdeewo-so/hu/issues/4968
https://github.com/hdeewo-so/hu/issues/4967
https://github.com/hdeewo-so/hu/issues/4966
https://github.com/hdeewo-so/hu/issues/4965
https://github.com/hdeewo-so/hu/issues/4964
https://github.com/hdeewo-so/hu/issues/4963
https://github.com/hdeewo-so/hu/issues/4962
https://github.com/hdeewo-so/hu/issues/4961
https://github.com/hdeewo-so/hu/issues/4960
https://github.com/hdeewo-so/hu/issues/4959
https://github.com/hdeewo-so/hu/issues/4958
https://github.com/hdeewo-so/hu/issues/4957
https://github.com/hdeewo-so/hu/issues/4956
https://github.com/hdeewo-so/hu/issues/4955
https://github.com/hdeewo-so/hu/issues/4954
https://github.com/hdeewo-so/hu/issues/4953
https://github.com/hdeewo-so/hu/issues/4952
https://github.com/hdeewo-so/hu/issues/4951
https://github.com/hdeewo-so/hu/issues/4950
https://github.com/hdeewo-so/hu/issues/4949
https://github.com/hdeewo-so/hu/issues/4948
https://github.com/hdeewo-so/hu/issues/4947
https://github.com/hdeewo-so/hu/issues/4946
https://github.com/hdeewo-so/hu/issues/4945
https://github.com/hdeewo-so/hu/issues/4944
https://github.com/hdeewo-so/hu/issues/4943
https://github.com/hdeewo-so/hu/issues/4942
https://github.com/hdeewo-so/hu/issues/4941
https://github.com/hdeewo-so/hu/issues/4940
https://github.com/hdeewo-so/hu/issues/4939
https://github.com/hdeewo-so/hu/issues/4938
https://github.com/hdeewo-so/hu/issues/4937
https://github.com/hdeewo-so/hu/issues/4936
https://github.com/hdeewo-so/hu/issues/4935
https://github.com/hdeewo-so/hu/issues/4934
https://github.com/hdeewo-so/hu/issues/4933
https://github.com/hdeewo-so/hu/issues/4932
https://github.com/hdeewo-so/hu/issues/4931
https://github.com/hdeewo-so/hu/issues/4930
https://github.com/hdeewo-so/hu/issues/4929
https://github.com/hdeewo-so/hu/issues/4928
https://github.com/hdeewo-so/hu/issues/4927
https://github.com/hdeewo-so/hu/issues/4926
https://github.com/hdeewo-so/hu/issues/4925
https://github.com/hdeewo-so/hu/issues/4924
https://github.com/hdeewo-so/hu/issues/4923
https://github.com/hdeewo-so/hu/issues/4922
https://github.com/hdeewo-so/hu/issues/4921
https://github.com/hdeewo-so/hu/issues/4920
https://github.com/hdeewo-so/hu/issues/4919
https://github.com/hdeewo-so/hu/issues/4918
https://github.com/hdeewo-so/hu/issues/4917
https://github.com/hdeewo-so/hu/issues/4916
https://github.com/hdeewo-so/hu/issues/4915
https://github.com/hdeewo-so/hu/issues/4914
https://github.com/hdeewo-so/hu/issues/4913
https://github.com/hdeewo-so/hu/issues/4912
https://github.com/hdeewo-so/hu/issues/4911
https://github.com/hdeewo-so/hu/issues/4910
https://github.com/hdeewo-so/hu/issues/4909
https://github.com/hdeewo-so/hu/issues/4908
https://github.com/hdeewo-so/hu/issues/4907
https://github.com/hdeewo-so/hu/issues/4906
https://github.com/hdeewo-so/hu/issues/4905
https://github.com/hdeewo-so/hu/issues/4904
https://github.com/hdeewo-so/hu/issues/4903
https://github.com/hdeewo-so/hu/issues/4902
https://github.com/hdeewo-so/hu/issues/4901
https://github.com/hdeewo-so/hu/issues/4900
https://github.com/hdeewo-so/hu/issues/4899
https://github.com/hdeewo-so/hu/issues/4898
https://github.com/hdeewo-so/hu/issues/4897
https://github.com/hdeewo-so/hu/issues/4896
https://github.com/hdeewo-so/hu/issues/4895
https://github.com/hdeewo-so/hu/issues/4894
https://github.com/hdeewo-so/hu/issues/4893
https://github.com/hdeewo-so/hu/issues/4892
https://github.com/hdeewo-so/hu/issues/4891
https://github.com/hdeewo-so/hu/issues/4890
https://github.com/hdeewo-so/hu/issues/4889
https://github.com/hdeewo-so/hu/issues/4888
https://github.com/hdeewo-so/hu/issues/4887
https://github.com/hdeewo-so/hu/issues/4886
https://github.com/hdeewo-so/hu/issues/4885
https://github.com/hdeewo-so/hu/issues/4884
https://github.com/hdeewo-so/hu/issues/4883
https://github.com/hdeewo-so/hu/issues/4882
https://github.com/hdeewo-so/hu/issues/4881
https://github.com/hdeewo-so/hu/issues/4880
https://github.com/hdeewo-so/hu/issues/4879
https://github.com/hdeewo-so/hu/issues/4878
https://github.com/hdeewo-so/hu/issues/4877
https://github.com/hdeewo-so/hu/issues/4876
https://github.com/hdeewo-so/hu/issues/4875
https://github.com/hdeewo-so/hu/issues/4874
https://github.com/hdeewo-so/hu/issues/4873
https://github.com/hdeewo-so/hu/issues/4872
https://github.com/hdeewo-so/hu/issues/4871
https://github.com/hdeewo-so/hu/issues/4870
https://github.com/hdeewo-so/hu/issues/4869
https://github.com/hdeewo-so/hu/issues/4868
https://github.com/hdeewo-so/hu/issues/4867
https://github.com/hdeewo-so/hu/issues/4866
https://github.com/hdeewo-so/hu/issues/4865
https://github.com/hdeewo-so/hu/issues/4864
https://github.com/hdeewo-so/hu/issues/4863
https://github.com/hdeewo-so/hu/issues/4862
https://github.com/hdeewo-so/hu/issues/4861
https://github.com/hdeewo-so/hu/issues/4860
https://github.com/hdeewo-so/hu/issues/4859
https://github.com/hdeewo-so/hu/issues/4858
https://github.com/hdeewo-so/hu/issues/4857
https://github.com/hdeewo-so/hu/issues/4856
https://github.com/hdeewo-so/hu/issues/4855
https://github.com/hdeewo-so/hu/issues/4854
https://github.com/hdeewo-so/hu/issues/4853
https://github.com/hdeewo-so/hu/issues/4852
https://github.com/hdeewo-so/hu/issues/4851
https://github.com/hdeewo-so/hu/issues/4850
https://github.com/hdeewo-so/hu/issues/4849
https://github.com/hdeewo-so/hu/issues/4848
https://github.com/hdeewo-so/hu/issues/4847
https://github.com/hdeewo-so/hu/issues/4846
https://github.com/hdeewo-so/hu/issues/4845
https://github.com/hdeewo-so/hu/issues/4844
https://github.com/hdeewo-so/hu/issues/4843
https://github.com/hdeewo-so/hu/issues/4842
https://github.com/hdeewo-so/hu/issues/4841
https://github.com/hdeewo-so/hu/issues/4840
https://github.com/hdeewo-so/hu/issues/4839
https://github.com/hdeewo-so/hu/issues/4838
https://github.com/hdeewo-so/hu/issues/4837
https://github.com/hdeewo-so/hu/issues/4836
https://github.com/hdeewo-so/hu/issues/4835
https://github.com/hdeewo-so/hu/issues/4834
https://github.com/hdeewo-so/hu/issues/4833
https://github.com/hdeewo-so/hu/issues/4832
https://github.com/hdeewo-so/hu/issues/4831
https://github.com/hdeewo-so/hu/issues/4830
https://github.com/hdeewo-so/hu/issues/4829
https://github.com/hdeewo-so/hu/issues/4828
https://github.com/hdeewo-so/hu/issues/4827
https://github.com/hdeewo-so/hu/issues/4826
https://github.com/hdeewo-so/hu/issues/4825
https://github.com/hdeewo-so/hu/issues/4824
https://github.com/hdeewo-so/hu/issues/4823
https://github.com/hdeewo-so/hu/issues/4822
https://github.com/hdeewo-so/hu/issues/4821
https://github.com/hdeewo-so/hu/issues/4820
https://github.com/hdeewo-so/hu/issues/4819
https://github.com/hdeewo-so/hu/issues/4818
https://github.com/hdeewo-so/hu/issues/4817
https://github.com/hdeewo-so/hu/issues/4816
https://github.com/hdeewo-so/hu/issues/4815
https://github.com/hdeewo-so/hu/issues/4814
https://github.com/hdeewo-so/hu/issues/4813
https://github.com/hdeewo-so/hu/issues/4812
https://github.com/hdeewo-so/hu/issues/4811
https://github.com/hdeewo-so/hu/issues/4810
https://github.com/hdeewo-so/hu/issues/4809
https://github.com/hdeewo-so/hu/issues/4808
https://github.com/hdeewo-so/hu/issues/4807
https://github.com/hdeewo-so/hu/issues/4806
https://github.com/hdeewo-so/hu/issues/4805
https://github.com/hdeewo-so/hu/issues/4804
https://github.com/hdeewo-so/hu/issues/4803
https://github.com/hdeewo-so/hu/issues/4802
https://github.com/hdeewo-so/hu/issues/4801
https://github.com/hdeewo-so/hu/issues/4800
https://github.com/hdeewo-so/hu/issues/4799
 

// 点击按钮
skill_mcp({
  mcp_name: "playwright",
  tool_name: "browser_click",
  arguments: {"selector": "input[type='submit']"}
})

参数:

  • selector (必需) - CSS 选择器
  • button (可选) - 鼠标按钮:leftrightmiddle
  • clickCount (可选) - 点击次数(双击用 2)
3. 执行 JavaScript
// 在浏览器控制台执行代码
skill_mcp({
  mcp_name: "playwright",
  tool_name: "browser_console",
  arguments: {
    "script": "document.querySelector('input').value = 'test'; return document.title;"
  }
})
Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐