Skip to content

Commit dee70bb

Browse files
committed
fix: update readme and actions
1 parent dc23e6e commit dee70bb

File tree

3 files changed

+25
-21
lines changed

3 files changed

+25
-21
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# learn more: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2+
* @lewxdev

.github/workflows/submit.yml

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,30 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- name: Cache pnpm modules
11-
uses: actions/cache@v3
9+
- uses: actions/checkout@v4
10+
11+
- uses: actions/cache@v3
1212
with:
1313
path: ~/.pnpm-store
1414
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
15-
restore-keys: |
16-
${{ runner.os }}-
17-
- uses: pnpm/[email protected]
15+
restore-keys: ${{ runner.os }}-
16+
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: lts/*
20+
cache: "pnpm"
21+
22+
- uses: pnpm/action-setup@v4
1823
with:
1924
version: latest
2025
run_install: true
21-
- name: Use Node.js 16.x
22-
uses: actions/[email protected]
23-
with:
24-
node-version: 16.x
25-
cache: "pnpm"
26-
- name: Build the extension
27-
run: pnpm build
28-
- name: Package the extension into a zip artifact
29-
run: pnpm package
30-
- name: Browser Platform Publish
31-
uses: PlasmoHQ/bpp@v3
26+
- run: pnpm build
27+
- run: pnpm package
28+
29+
- uses: PlasmoHQ/bpp@v3
3230
with:
31+
# see:
32+
# * https://docs.plasmo.com/framework/workflows/submit
33+
# * https://github.com/PlasmoHQ/bms/blob/main/tokens.md
3334
keys: ${{ secrets.SUBMIT_KEYS }}
3435
artifact: build/chrome-mv3-prod.zip

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,17 @@ subaddress are delivered to the inbox you already use.
3737

3838
## Permissions
3939

40-
The extension requests only minimal necessary permissions in order to respect
40+
The extension requests only necessary permissions in order to respect user
4141
privacy and adhere to the Chrome Web Store's
4242
[updated privacy policy](https://developer.chrome.com/docs/webstore/user_data/).
4343

4444
- [`activeTab`](https://developer.chrome.com/docs/extensions/reference/api/tabs) -
45-
Allows the extension to retrieve the URL of the currently active tab
45+
Allows the extension to retrieve the URL of the currently active tab when
46+
requested by the user and provide context in history
4647
- [`contextMenus`](https://developer.chrome.com/docs/extensions/reference/api/contextMenus) -
47-
Allows the extension to add a context menu item for autofill
48+
Allows the extension to add a context menu item for autofill on input fields
4849
- [`scripting`](https://developer.chrome.com/docs/extensions/reference/api/scripting) -
49-
Allows the extension to autofill input fields on the page
50+
Allows the extension to perform autofill on active input fields
5051
- [`storage`](https://developer.chrome.com/docs/extensions/reference/api/storage) -
5152
Allows the extension to store functional data (email address(es), history, etc.)
5253

0 commit comments

Comments
 (0)