Skip to content

Commit c9bae5c

Browse files
committed
fix: remove the RC tag to resolve #1 and update the README
1 parent 5e26910 commit c9bae5c

4 files changed

Lines changed: 29 additions & 7 deletions

File tree

README.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
# WXT + Vue 3
1+
# Plex Screenshot Helper(Plex 一键截图助手)
22

3-
This template should help get you started developing with Vue 3 in WXT.
3+
A simple Chrome extension that lets you capture Plex video screenshots with filenames containing the title, season·episode, episode title, and timestamp.
44

5-
## Recommended IDE Setup
5+
一个简单的 Chrome 插件,支持在 Plex 中一键截取当前播放画面,并自动以“作品名 + 季·集数 + 标题 + 播放时间”为文件名保存截图。
66

7-
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar).
7+
e.g. `[ガールズバンドクライ] - シーズン1·第10話—ワンダーフォーゲル - 00_08_37`
8+
9+
---
10+
11+
## Features / 功能
12+
13+
- Capture video frame directly from the Plex player
14+
- Automatically name the file as `[Title] - [Season·Episode]-[Episode title] - [Timestamp].png`
15+
- Works via button click or keyboard shortcut
16+
17+
- 直接从 Plex 播放器截取视频画面
18+
- 自动命名截图文件为 `[作品名] - [第几季·第几集]-[本集标题] - [时间戳].png`
19+
- 支持点击按钮或快捷键触发截图
20+
21+
## Tips / 使用提示
22+
23+
Default shortcut key is Alt+Shift+Z, MacOS is ⌥+⇧+Z
24+
默认快捷键为 Alt+Shift+Z,MacOS 为 ⌥+⇧+Z
25+
You can change the shortcut in Chrome extensions settings (access via `chrome://extensions/shortcuts`)
26+
可以在 Chrome 扩展设置中更改快捷键 (访问 `chrome://extensions/shortcuts`)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "wxt-vue-starter",
2+
"name": "plex-screenshot-helper",
33
"description": "manifest.json description",
44
"private": true,
5-
"version": "0.0.0",
5+
"version": "1.0.1",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt",

pnpm-workspace.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
onlyBuiltDependencies:
2+
- esbuild
3+
- spawn-sync

wxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineConfig({
66
manifest: {
77
manifest_version: 3,
88
name: "Plex Screenshot Helper",
9-
version: "1.0",
9+
version: "1.0.1",
1010
description: "一键截图并命名 Plex 画面",
1111
permissions: ["scripting", "activeTab"],
1212
host_permissions: ["<all_urls>"],

0 commit comments

Comments
 (0)