# LeSEO 扩展插件配置说明

扩展插件**均不在 LeSEO 后台一键安装**，仅展示介绍并跳转 `detail_url` 详情页，由用户自行下载安装。

## registry.php 字段

| 字段 | 说明 |
|------|------|
| `type` | `recommend`/`premium` = 高级插件；`standard` = 常规插件 |
| `detail_url` | **必填**，插件介绍/下载页 |
| `detail_button` | 按钮文案，默认「查看详情」 |
| `plugin_file` | 可选，如 `leosp/leosp.php`，用于检测是否已手动安装 |
| `price_label` | 高级插件未安装时状态文案，如「付费版」 |
| `badge` | 名称旁角标，如 `PRO` |

## 示例

```php
// 常规插件
array(
    'type'          => 'standard',
    'slug'          => 'leosp',
    'name'          => 'LeOSP静态分离',
    'description'   => '…',
    'version'       => '1.0.0',
    'updated_at'    => '2026-05-23',
    'detail_url'    => 'https://www.lezaiyun.com/leosp.html',
    'detail_button' => '插件详情',
    'plugin_file'   => 'leosp/leosp.php',
),

// 高级插件
array(
    'type'          => 'recommend',
    'slug'          => 'LeImgLocal',
    'name'          => '本地化图片 PRO',
    'badge'         => 'PRO',
    'price_label'   => '付费版',
    'detail_url'    => 'https://www.lezaiyun.com/leimglocal.html',
    'detail_button' => '了解 PRO 版',
    'plugin_file'   => 'leimglocal/leimglocal.php',
),
```

本地 `inc/extensions/packages/` 目录保留，供你在详情页提供下载链接时使用，LeSEO 不再从此处自动安装。
