Skip to content
This repository was archived by the owner on Aug 16, 2024. It is now read-only.

Commit c47f4f2

Browse files
committed
feat: change name
1 parent 7c253a7 commit c47f4f2

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# a-translator-chrome-extension
1+
# DeepL Translate for Chrome
22

3-
一个支持 DeepL 翻译的 Chrome 插件(需自己购买 DeepL API 计划)。
3+
Chrome DeepL 翻译插件 (需自己购买 DeepL API 计划)。
44

55
## 安装
66

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "a-translator-chrome-extension",
2+
"name": "deepl-chrome-extension",
33
"version": "0.3.1",
44
"description": "DeepL translate for Chrome",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/geekdada/a-translator-chrome-extension"
8+
"url": "https://github.com/geekdada/deepl-chrome-extension"
99
},
1010
"scripts": {
1111
"start": "cross-env NODE_ENV=development node scripts/webserver.js",

src/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "A Translator",
2+
"name": "DeepL Translate",
33
"permissions": [
44
"http://*/*",
55
"https://*/*",
@@ -19,7 +19,7 @@
1919
"default_icon": {
2020
"128": "icon-128.png"
2121
},
22-
"default_title": "A Translator"
22+
"default_title": "DeepL Translate"
2323
},
2424
"icons": {
2525
"128": "icon-128.png"

src/pages/Background/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ chrome.commands.onCommand.addListener(function (command) {
6868

6969
chrome.contextMenus.create({
7070
id: 'ate',
71-
title: 'A Translator',
71+
title: 'DeepL Translate',
7272
contexts: ['page'],
7373
})
7474

src/pages/Content/components/App/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ const App: React.FC = () => {
189189
<div
190190
className="ate_App__header"
191191
tw="bg-purple-800 px-5 py-3 text-white font-bold text-lg cursor-move flex justify-between items-center">
192-
<span>A Translator</span>
192+
<span>DeepL Translate</span>
193193
<span tw="flex space-x-3">
194194
{enableOCR ? (
195195
<IconButton

0 commit comments

Comments
 (0)