docs: update README with new API usage instructions

This commit is contained in:
EduarteXD
2025-05-04 18:09:48 +08:00
parent 146a569dd3
commit 0e585d5574
2 changed files with 43 additions and 33 deletions

View File

@ -1,29 +0,0 @@
# 星际公民盒子浏览器拓展
为星际公民网站及工具站提供汉化功能的浏览器扩展。
## 网页API使用说明
本扩展现在提供了网页API允许网页JavaScript直接调用翻译功能。
### 手动触发翻译
```javascript
// 检查API是否可用
if (window.SCTranslateApi && window.SCTranslateApi.translate) {
// 触发翻译
window.SCTranslateApi.translate()
.then(response => {
if (response.success) {
console.log('翻译成功');
} else {
console.error('翻译失败:', response.error);
}
});
}
```
## 安全说明
- API仅在扩展支持的网站上可用
- 所有API操作都在网页上下文中执行不会泄露敏感权限