mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-07-02 19:52:43 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 016e3bfba0 | |||
| 56ae964c04 |
@@ -95,10 +95,16 @@ jobs:
|
||||
with:
|
||||
name: chrome
|
||||
|
||||
- name: Get version from package.json
|
||||
id: get_version
|
||||
run: |
|
||||
extname=`ls password-generator-*-chrome.zip`
|
||||
echo "filename=$extname" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- uses: wdzeng/chrome-extension@v1.2.4
|
||||
with:
|
||||
extension-id: jnjobgjobffgmgfnkpkjfjkkfhfikmfl
|
||||
zip-path: password-generator-*-chrome.zip
|
||||
zip-path: ${{ steps.get_version.outputs.filename }}
|
||||
client-id: ${{ secrets.CHROME_CLIENT_ID }}
|
||||
client-secret: ${{ secrets.CHROME_CLIENT_SECRET }}
|
||||
refresh-token: ${{ secrets.CHROME_REFRESH_TOKEN }}
|
||||
@@ -113,7 +119,7 @@ jobs:
|
||||
with:
|
||||
name: chrome
|
||||
|
||||
- uses: wdzeng/edge-addon@v1.2.5
|
||||
- uses: wdzeng/edge-addon@v2.0.0
|
||||
with:
|
||||
product-id: ${{ secrets.EDGE_PRODUCT_ID }}
|
||||
zip-path: password-generator-*-chrome.zip
|
||||
@@ -131,7 +137,7 @@ jobs:
|
||||
with:
|
||||
name: firefox
|
||||
|
||||
- uses: wdzeng/firefox-addon@v1.0.5
|
||||
- uses: wdzeng/firefox-addon@v1.1.1
|
||||
with:
|
||||
addon-guid: ${{ secrets.FIREFOX_EXT_UUID }}
|
||||
xpi-path: password-generator-*-firefox.zip
|
||||
|
||||
@@ -20,11 +20,12 @@ Extension for web browsers which helps you to easily generate strong passwords i
|
||||

|
||||
|
||||
## Languages
|
||||
- Chinese (Simplified)
|
||||
- English
|
||||
- Ukrainian
|
||||
- Polish
|
||||
- Russian
|
||||
- Portuguese (Brazil)
|
||||
- Russian
|
||||
- Ukrainian
|
||||
|
||||
## Download
|
||||
[](https://chrome.google.com/webstore/detail/jnjobgjobffgmgfnkpkjfjkkfhfikmfl)
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
manifest:
|
||||
name: "密码生成器"
|
||||
description: "密码生成器扩展可让您一键轻松生成长而安全的密码"
|
||||
author: "Eugene Fox"
|
||||
|
||||
common:
|
||||
reset: "重置"
|
||||
copy: "复制"
|
||||
|
||||
errors:
|
||||
too_short: "密码的长度必须至少为4个字符"
|
||||
no_characters: "必须至少选择一组字符"
|
||||
too_long: "长度太长,无法生成具有唯一字符的密码"
|
||||
|
||||
about:
|
||||
title: "关于"
|
||||
developed_by: "由 Eugene Fox 开发"
|
||||
lincensed_under: "协议:"
|
||||
mit_license: "MIT License"
|
||||
translation_cta:
|
||||
text: "发现错别字或需要翻译成您的语言?"
|
||||
button: "从这里开始"
|
||||
links:
|
||||
website: "我的网站"
|
||||
source: "源代码"
|
||||
changelog: "更新日志"
|
||||
cta:
|
||||
feedback: "提供反馈"
|
||||
sponsor: "赞助开发者"
|
||||
|
||||
settings:
|
||||
title: "设置"
|
||||
length:
|
||||
title: "默认密码长度"
|
||||
hint: "建议长度:8-16"
|
||||
quick_range: "快速调节长度范围"
|
||||
include:
|
||||
title: "包括字符"
|
||||
uppercase: "大写字母"
|
||||
lowercase: "小写字母"
|
||||
numeric: "数字"
|
||||
special: "特殊"
|
||||
exclude:
|
||||
title: "排除字符"
|
||||
similar: "相似"
|
||||
ambiguous: "易混淆"
|
||||
repeating:
|
||||
title: "重复"
|
||||
hint: "密码中的每个字符都将是独一无二的"
|
||||
context_menu: "显示右键菜单"
|
||||
|
||||
generator:
|
||||
refresh: "刷新"
|
||||
insert: "插入并复制"
|
||||
options:
|
||||
title: "快速调整"
|
||||
hint: "这些调整将不会保存"
|
||||
include: "包括"
|
||||
exclude: "排除"
|
||||
Generated
+1046
-2156
File diff suppressed because it is too large
Load Diff
+14
-14
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "password-generator",
|
||||
"version": "4.0.0",
|
||||
"version": "4.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
@@ -15,23 +15,23 @@
|
||||
"postinstall": "wxt prepare"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluentui/react-components": "^9.54.16",
|
||||
"@fluentui/react-icons": "^2.0.258",
|
||||
"@wxt-dev/i18n": "^0.1.0",
|
||||
"@fluentui/react-components": "^9.55.1",
|
||||
"@fluentui/react-icons": "^2.0.264",
|
||||
"@wxt-dev/i18n": "^0.2.3",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.10.0",
|
||||
"@types/react": "^18.3.9",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.7.0",
|
||||
"@typescript-eslint/parser": "^8.7.0",
|
||||
"@eslint/js": "^9.13.0",
|
||||
"@types/react": "^18.3.12",
|
||||
"@types/react-dom": "^18.3.1",
|
||||
"@typescript-eslint/eslint-plugin": "^8.13.0",
|
||||
"@typescript-eslint/parser": "^8.13.0",
|
||||
"@wxt-dev/module-react": "^1.1.1",
|
||||
"eslint": "^9.11.1",
|
||||
"eslint-plugin-react": "^7.36.1",
|
||||
"globals": "^15.9.0",
|
||||
"typescript": "^5.6.2",
|
||||
"wxt": "^0.19.10"
|
||||
"eslint": "^9.13.0",
|
||||
"eslint-plugin-react": "^7.37.2",
|
||||
"globals": "^15.11.0",
|
||||
"typescript": "^5.6.3",
|
||||
"wxt": "^0.19.13"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user