-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
1,675 additions
and
1,018 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,14 +33,16 @@ jobs: | |
with: | ||
version: latest | ||
run_install: true | ||
- name: Use Node.js 16.x | ||
- name: Use Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16.x | ||
node-version: 18.x | ||
cache: "pnpm" | ||
- name: Build the extension | ||
run: | | ||
pnpm build --target=chrome-mv3 --zip | ||
rm -rf pacakge.json | ||
mv package.firefox.json package.json | ||
pnpm build --target=firefox-mv2 --zip | ||
- uses: monkeyWie/[email protected] | ||
id: get-release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"name": "gopeed-browser-extension", | ||
"displayName": "Gopeed", | ||
"version": "0.0.3", | ||
"description": "Gopeed browser extension", | ||
"homepage": "https://gopeed.com", | ||
"author": "Levi", | ||
"scripts": { | ||
"dev": "plasmo dev", | ||
"dev:firefox": "plasmo dev --target=firefox-mv2", | ||
"build": "plasmo build --zip", | ||
"build:firefox": "plasmo build --target=firefox-mv2 --zip" | ||
}, | ||
"dependencies": { | ||
"@emotion/cache": "11.11.0", | ||
"@emotion/react": "11.11.1", | ||
"@emotion/styled": "11.11.0", | ||
"@gopeed/rest": "^1.3.7", | ||
"@mui/icons-material": "^5.15.10", | ||
"@mui/lab": "5.0.0-alpha.165", | ||
"@mui/material": "5.15.10", | ||
"@mui/x-date-pickers": "^6.19.4", | ||
"@plasmohq/messaging": "^0.6.1", | ||
"@plasmohq/storage": "^1.9.0", | ||
"content-disposition": "^0.5.4", | ||
"plasmo": "0.84.2", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-file-icon": "^1.4.0", | ||
"react-hook-form": "^7.50.1", | ||
"react-hook-form-mui": "7.0.0-beta.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.23.3", | ||
"@gopeed/types": "^1.3.7", | ||
"@ianvs/prettier-plugin-sort-imports": "4.1.1", | ||
"@types/chrome": "0.0.251", | ||
"@types/content-disposition": "^0.5.8", | ||
"@types/node": "20.9.0", | ||
"@types/react": "18.2.37", | ||
"@types/react-dom": "18.2.15", | ||
"prettier": "3.0.3", | ||
"typescript": "5.2.2" | ||
}, | ||
"manifest": { | ||
"host_permissions": [ | ||
"http://*/*", | ||
"https://*/*" | ||
], | ||
"permissions": [ | ||
"downloads", | ||
"cookies", | ||
"webRequest", | ||
"webRequestBlocking" | ||
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "{c5d69a8f-2ed0-46a7-afa4-b3a00dc58088}" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.