Skip to content

Commit d0ba2d5

Browse files
committed
docs(i18n):Deutsch
1 parent d97f6c4 commit d0ba2d5

File tree

23 files changed

+424
-158
lines changed

23 files changed

+424
-158
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Create Chrome Extension (.crx)
22

3-
![crx-preview](./docs/crx-preview.png)
3+
![crx-preview](./docs/img/crx-preview.png)
44
[![OSCS Status](https://www.oscs1024.com/platform/badge/guocaoyi/create-chrome-ext.svg?size=small)](https://www.oscs1024.com/project/guocaoyi/create-chrome-ext?ref=badge_small)
55
[![npm](https://img.shields.io/npm/v/create-chrome-ext?logo=npm)](https://www.npmjs.com/package/create-chrome-ext)
66
[![npm-download](https://img.shields.io/npm/dw/create-chrome-ext)](https://www.npmjs.com/package/create-chrome-ext)
@@ -15,7 +15,7 @@
1515
- 🥢 Multiple Language Supported ([JavaScript](https://www.javascript.com/) · [TypeScript](https://www.typescriptlang.org/))
1616
- 🧶 Optimized Builds (Background \ Content \ Popup \ Options \ SidePanel \ DevtoolsPanel)
1717

18-
[EN](./README.md) · [中文](./README_zh.md)
18+
[English](./README.md) · [简体中文](./docs/README.zh-CN.md) · [French](./docs/README.fr-FR.md) · [Deutsch](./docs/README.de-DE.md) · [Русский](./docs/README.ja-JP.md) · [日本語](./docs/README.ja-JP.md)
1919

2020
## Installing
2121

@@ -65,6 +65,6 @@ You can also generator the project with `crx` cli, run:
6565

6666
## Preview
6767

68-
![crx-run](./docs/crx-run.png)
69-
![crx-install](./docs/crx-install.png)
70-
![crx-build](./docs/crx-build.png)
68+
![crx-run](./docs/img/crx-run.png)
69+
![crx-install](./docs/img/crx-install.png)
70+
![crx-build](./docs/img/crx-build.png)

docs/README.de-DE.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Erstellen einer Chrome-Erweiterung (.crx)
2+
3+
![Vorschau crx](./img/crx-preview.png)
4+
[![OSCS-Status](https://www.oscs1024.com/platform/badge/guocaoyi/create-chrome-ext.svg?size=small)](https://www.oscs1024.com/project/guocaoyi/create-chrome-ext?ref=badge_small)
5+
[![npm](https://img.shields.io/npm/v/create-chrome-ext?logo=npm)](https://www.npmjs.com/package/create-chrome-ext)
6+
[![npm-Downloads](https://img.shields.io/npm/dw/create-chrome-ext)](https://www.npmjs.com/package/create-chrome-ext)
7+
![GitHub-Sprachanzahl](https://img.shields.io/github/languages/count/guocaoyi/create-chrome-ext)
8+
[![npm-Veröffentlichung](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml)
9+
10+
> Strukturieren Sie Ihre Chrome-Erweiterung, mit Unterstützung mehrerer Boilerplates!
11+
12+
- 🚀 Blitzschnelle HMR (Verwendung von [Vite4](https://vitejs.dev))
13+
- 🥡 Sofort einsatzbereit
14+
- 🌈 Unterstützung mehrerer Frontend-Frameworks ([React](https://reactjs.org) · [Vue](https://vuejs.org) · [Svelte](https://svelte.dev) · [Preact](https://preactjs.com) · [Solid](https://www.solidjs.com) · [Alpine](https://alpinejs.dev) · [Lit](https://lit.dev) · [Inferno](https://www.infernojs.org) · [Stencil](https://stenciljs.com) · [Vanilla](http://vanilla-js.com))
15+
- 🥢 Unterstützung mehrerer Sprachen ([JavaScript](https://www.javascript.com/) · [TypeScript](https://www.typescriptlang.org/))
16+
- 🧶 Optimierte Builds (Hintergrund · Inhalt · Popup · Optionen · Seitenleiste · Devtools-Panel)
17+
18+
[English](./README.md) · [简体中文](./docs/README.zh-CN.md) · [French](./docs/README.fr-FR.md) · [Deutsch](./docs/README.de-DE.md) · [Русский](./docs/README.ja-JP.md) · [日本語](./docs/README.ja-JP.md)
19+
20+
## Installation
21+
22+
> Node >= 14.18.0
23+
24+
```bash
25+
# Verwenden Sie den Befehl npm-create oder verwenden Sie pnpm | yarn
26+
λ npm create chrome-ext
27+
28+
# oder verwenden Sie den Befehl npx
29+
λ npx create-chrome-ext
30+
31+
# oder verwenden Sie den Befehl npm-init
32+
λ npm init chrome-ext
33+
```
34+
35+
## Verwendung
36+
37+
Sie können auch direkt den Projektnamen und die Vorlage, die Sie verwenden möchten, über zusätzliche Befehlszeilenoptionen angeben. Um beispielsweise eine Vite + Svelte-Projektstruktur zu erstellen, führen Sie folgenden Befehl aus:
38+
39+
```bash
40+
# npm 6.x
41+
λ npm create chrome-ext@latest my-crx-app --template svelte-js
42+
43+
# oder npm 7+, es ist ein zusätzlicher Doppelstrich erforderlich:
44+
λ npm create chrome-ext@latest my-crx-app -- --template react-ts
45+
46+
# oder yarn
47+
λ yarn create chrome-ext my-crx-app --template vue-ts
48+
49+
# oder pnpm
50+
λ pnpm create chrome-ext my-crx-app --template vanilla-ts
51+
```
52+
53+
Sie können das Projekt auch mit dem Befehlszeilen-Tool `crx` generieren. Führen Sie dazu den folgenden Befehl aus:
54+
55+
```bash
56+
λ npm install create-chrome-ext --global
57+
58+
# und dann
59+
λ crx my-crx-app
60+
# oder
61+
λ crx my-crx-app --template preact-js
62+
# oder verwenden Sie create-chrome-exe (globale Umgebung)
63+
λ create-chrome-ext my-crx-app
64+
```
65+
66+
## Vorschau
67+
68+
![crx-Ausführung](./img/crx-run.png)
69+
![crx-Installation](./img/crx-install.png)
70+
![crx-Build](./img/crx-build.png)

docs/README.fr-FR.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Créer une extension Chrome (.crx)
2+
3+
![Aperçu crx](./img/crx-preview.png)
4+
[![Statut OSCS](https://www.oscs1024.com/platform/badge/guocaoyi/create-chrome-ext.svg?size=small)](https://www.oscs1024.com/project/guocaoyi/create-chrome-ext?ref=badge_small)
5+
[![npm](https://img.shields.io/npm/v/create-chrome-ext?logo=npm)](https://www.npmjs.com/package/create-chrome-ext)
6+
[![Téléchargements npm](https://img.shields.io/npm/dw/create-chrome-ext)](https://www.npmjs.com/package/create-chrome-ext)
7+
![Nombre de langages GitHub](https://img.shields.io/github/languages/count/guocaoyi/create-chrome-ext)
8+
[![npm publish](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml)
9+
10+
> Créez la structure de votre extension Chrome, avec prise en charge de plusieurs modèles de démarrage !
11+
12+
- 🚀 Mise à jour rapide avec HMR (utilisation de [Vite4](https://vitejs.dev))
13+
- 🥡 Prêt à l'emploi
14+
- 🌈 Prise en charge de plusieurs frameworks frontend ([React](https://reactjs.org) · [Vue](https://vuejs.org) · [Svelte](https://svelte.dev) · [Preact](https://preactjs.com) · [Solid](https://www.solidjs.com) · [Alpine](https://alpinejs.dev) · [Lit](https://lit.dev) · [Inferno](https://www.infernojs.org) · [Stencil](https://stenciljs.com) · [Vanilla](http://vanilla-js.com))
15+
- 🥢 Prise en charge de plusieurs langages ([JavaScript](https://www.javascript.com/) · [TypeScript](https://www.typescriptlang.org/))
16+
- 🧶 Création optimisée
17+
18+
[English](./README.md) · [简体中文](./docs/README.zh-CN.md) · [French](./docs/README.fr-FR.md) · [Deutsch](./docs/README.de-DE.md) · [Русский](./docs/README.ja-JP.md) · [日本語](./docs/README.ja-JP.md)
19+
20+
## Installation
21+
22+
> Node >= 14.18.0
23+
24+
```bash
25+
# Utilisez la commande npm-create, ou utilisez pnpm | yarn
26+
λ npm create chrome-ext
27+
28+
# ou utilisez la commande npx
29+
λ npx create-chrome-ext
30+
31+
# ou utilisez la commande npm-init
32+
λ npm init chrome-ext
33+
```
34+
35+
## Utilisation
36+
37+
Vous pouvez également spécifier directement le nom du projet et le modèle que vous souhaitez utiliser via des options de ligne de commande supplémentaires. Par exemple, pour créer la structure d'un projet Vite + Svelte, exécutez la commande suivante :
38+
39+
```bash
40+
# npm 6.x
41+
λ npm create chrome-ext@latest my-crx-app --template svelte-js
42+
43+
# ou npm 7+, un double tiret supplémentaire est nécessaire :
44+
λ npm create chrome-ext@latest my-crx-app -- --template react-ts
45+
46+
# ou yarn
47+
λ yarn create chrome-ext my-crx-app --template vue-ts
48+
49+
# ou pnpm
50+
λ pnpm create chrome-ext my-crx-app --template vanilla-ts
51+
```
52+
53+
Vous pouvez également générer le projet avec l'interface de ligne de commande `crx`, exécutez la commande suivante :
54+
55+
```bash
56+
λ npm install create-chrome-ext --global
57+
58+
# puis
59+
λ crx my-crx-app
60+
# ou
61+
λ crx my-crx-app --template preact-js
62+
# ou utilisez create-chrome-exe (environnement global)
63+
λ create-chrome-ext my-crx-app
64+
```
65+
66+
## Aperçu
67+
68+
![Exécution de crx](./img/crx-run.png)
69+
![Installation de crx](./img/crx-install.png)
70+
![Création de crx](./img/crx-build.png)

docs/README.id-ID.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Buat Ekstensi Chrome (.crx)
2+
3+
![Pratinjau crx](./docs/crx-preview.png)
4+
[![Status OSCS](https://www.oscs1024.com/platform/badge/guocaoyi/create-chrome-ext.svg?size=small)](https://www.oscs1024.com/project/guocaoyi/create-chrome-ext?ref=badge_small)
5+
[![npm](https://img.shields.io/npm/v/create-chrome-ext?logo=npm)](https://www.npmjs.com/package/create-chrome-ext)
6+
[![Unduh npm](https://img.shields.io/npm/dw/create-chrome-ext)](https://www.npmjs.com/package/create-chrome-ext)
7+
![Jumlah Bahasa GitHub](https://img.shields.io/github/languages/count/guocaoyi/create-chrome-ext)
8+
[![Penerbitan npm](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml)
9+
10+
> Membentuk ekstensi Chrome Anda, dengan dukungan berbagai boilerplate!
11+
12+
- 🚀 HMR Cepat (menggunakan [Vite4](https://vitejs.dev))
13+
- 🥡 Siap Pakai
14+
- 🌈 Mendukung Berbagai Framework Frontend ([React](https://reactjs.org) · [Vue](https://vuejs.org) · [Svelte](https://svelte.dev) · [Preact](https://preactjs.com) · [Solid](https://www.solidjs.com) · [Alpine](https://alpinejs.dev) · [Lit](https://lit.dev) · [Inferno](https://www.infernojs.org) · [Stencil](https://stenciljs.com) · [Vanilla](http://vanilla-js.com))
15+
- 🥢 Mendukung Berbagai Bahasa ([JavaScript](https://www.javascript.com/) · [TypeScript](https://www.typescriptlang.org/))
16+
- 🧶 Pembangunan Teroptimasi (Latar Belakang · Konten · Popup · Opsi · Panel Sisi · Panel Devtools)
17+
18+
[English](./README.md) · [简体中文](./docs/README.zh-CN.md) · [French](./docs/README.fr-FR.md) · [Deutsch](./docs/README.de-DE.md) · [Русский](./docs/README.ja-JP.md) · [日本語](./docs/README.ja-JP.md)
19+
20+
## Instalasi
21+
22+
> Node >= 14.18.0
23+
24+
```bash
25+
# Gunakan perintah npm-create, atau gunakan pnpm atau yarn
26+
λ npm create chrome-ext
27+
28+
# atau gunakan perintah npx
29+
λ npx create-chrome-ext
30+
31+
# atau gunakan perintah npm-init
32+
λ npm init chrome-ext
33+
```
34+
35+
## Penggunaan
36+
37+
Anda juga dapat langsung menentukan nama proyek dan templat yang ingin Anda gunakan melalui opsi baris perintah tambahan. Misalnya, untuk membentuk proyek Vite + Svelte, jalankan:
38+
39+
```bash
40+
# npm 6.x
41+
λ npm create chrome-ext@latest my-crx-app --template svelte-js
42+
43+
# atau npm 7+, perlu tambahan tanda dua lini:
44+
λ npm create chrome-ext@latest my-crx-app -- --template react-ts
45+
46+
# atau gunakan yarn
47+
λ yarn create chrome-ext my-crx-app --template vue-ts
48+
49+
# atau pnpm
50+
λ pnpm create chrome-ext my-crx-app --template vanilla-ts
51+
```
52+
53+
Anda juga dapat membuat proyek dengan perintah baris `crx`, jalankan:
54+
55+
```bash
56+
λ npm install create-chrome-ext --global
57+
58+
# dan kemudian
59+
λ crx my-crx-app
60+
# atau
61+
λ crx my-crx-app --template preact-js
62+
# atau gunakan create-chrome-exe (lingkungan global)
63+
λ create-chrome-ext my-crx-app
64+
```
65+
66+
## Pratinjau
67+
68+
![crx-berjalan](./docs/crx-run.png)
69+
![crx-pasang](./docs/crx-install.png)
70+
![crx-bangun](./docs/crx-build.png)

docs/README.ja-JP.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Chrome拡張機能を作成する(.crx)
2+
3+
![crxプレビュー](./img/crx-preview.png)
4+
[![OSCSステータス](https://www.oscs1024.com/platform/badge/guocaoyi/create-chrome-ext.svg?size=small)](https://www.oscs1024.com/project/guocaoyi/create-chrome-ext?ref=badge_small)
5+
[![npm](https://img.shields.io/npm/v/create-chrome-ext?logo=npm)](https://www.npmjs.com/package/create-chrome-ext)
6+
[![npmダウンロード](https://img.shields.io/npm/dw/create-chrome-ext)](https://www.npmjs.com/package/create-chrome-ext)
7+
![GitHub言語数](https://img.shields.io/github/languages/count/guocaoyi/create-chrome-ext)
8+
[![npm公開](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml)
9+
10+
> Chrome拡張機能の骨組みを作成します。複数のボイラープレートがサポートされています!
11+
12+
- 🚀 高速なHMR([Vite4](https://vitejs.dev)を使用)
13+
- 🥡 すぐに使える
14+
- 🌈 複数のフロントエンドフレームワークをサポート([React](https://reactjs.org) · [Vue](https://vuejs.org) · [Svelte](https://svelte.dev) · [Preact](https://preactjs.com) · [Solid](https://www.solidjs.com) · [Alpine](https://alpinejs.dev) · [Lit](https://lit.dev) · [Inferno](https://www.infernojs.org) · [Stencil](https://stenciljs.com) · [Vanilla](http://vanilla-js.com)
15+
- 🥢 複数の言語をサポート([JavaScript](https://www.javascript.com/) · [TypeScript](https://www.typescriptlang.org/)
16+
- 🧶 最適化されたビルド
17+
18+
[English](./README.md) · [简体中文](./docs/README.zh-CN.md) · [French](./docs/README.fr-FR.md) · [Deutsch](./docs/README.de-DE.md) · [Русский](./docs/README.ja-JP.md) · [日本語](./docs/README.ja-JP.md)
19+
20+
## インストール
21+
22+
> Node >= 14.18.0
23+
24+
```bash
25+
# npm-createコマンドを使用するか、pnpmまたはyarnを使用します
26+
λ npm create chrome-ext
27+
28+
# またはnpxコマンドを使用します
29+
λ npx create-chrome-ext
30+
31+
# またはnpm-initコマンドを使用します
32+
λ npm init chrome-ext
33+
```
34+
35+
## 使用法
36+
37+
追加のコマンドラインオプションを使用して、プロジェクト名と使用したいテンプレートを直接指定することもできます。例えば、Vite + Svelteプロジェクトの骨組みを作成するには、次のコマンドを実行します:
38+
39+
```bash
40+
# npm 6.x
41+
λ npm create chrome-ext@latest my-crx-app --template svelte-js
42+
43+
# またはnpm 7+、追加の二重ダッシュが必要です:
44+
λ npm create chrome-ext@latest my-crx-app -- --template react-ts
45+
46+
# またはyarnを使用します
47+
λ yarn create chrome-ext my-crx-app --template vue-ts
48+
49+
# またはpnpmを使用します
50+
λ pnpm create chrome-ext my-crx-app --template vanilla-ts
51+
```
52+
53+
プロジェクトを`crx` CLIで生成することもできます。次のコマンドを実行してください:
54+
55+
```bash
56+
λ npm install create-chrome-ext --global
57+
58+
# そして
59+
λ crx my-crx-app
60+
# または
61+
λ crx my-crx-app --template preact-js
62+
# またはcreate-chrome-exe(グローバル環境を使用)
63+
λ create-chrome-ext my-crx-app
64+
```
65+
66+
## プレビュー
67+
68+
![crx実行](./img/crx-run.png)
69+
![crxインストール](./img/crx-install.png)
70+
![crxビルド](./img/crx-build.png)

docs/README.ru-RU.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Создание расширения Chrome (.crx)
2+
3+
![Предпросмотр crx](./img/crx-preview.png)
4+
[![Статус OSCS](https://www.oscs1024.com/platform/badge/guocaoyi/create-chrome-ext.svg?size=small)](https://www.oscs1024.com/project/guocaoyi/create-chrome-ext?ref=badge_small)
5+
[![npm](https://img.shields.io/npm/v/create-chrome-ext?logo=npm)](https://www.npmjs.com/package/create-chrome-ext)
6+
[![Загрузки npm](https://img.shields.io/npm/dw/create-chrome-ext)](https://www.npmjs.com/package/create-chrome-ext)
7+
![Количество языков в GitHub](https://img.shields.io/github/languages/count/guocaoyi/create-chrome-ext)
8+
[![Опубликовать в npm](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/guocaoyi/create-chrome-ext/actions/workflows/npm-publish.yml)
9+
10+
> Создание скелета вашего расширения для Chrome, поддерживается несколько шаблонов!
11+
12+
- 🚀 Быстрое обновление с помощью HMR (используется [Vite4](https://vitejs.dev))
13+
- 🥡 Готово к использованию
14+
- 🌈 Поддержка нескольких фронтенд-фреймворков ([React](https://reactjs.org) · [Vue](https://vuejs.org) · [Svelte](https://svelte.dev) · [Preact](https://preactjs.com) · [Solid](https://www.solidjs.com) · [Alpine](https://alpinejs.dev) · [Lit](https://lit.dev) · [Inferno](https://www.infernojs.org) · [Stencil](https://stenciljs.com) · [Vanilla](http://vanilla-js.com))
15+
- 🥢 Поддержка нескольких языков ([JavaScript](https://www.javascript.com/) · [TypeScript](https://www.typescriptlang.org/))
16+
- 🧶 Оптимизированные сборки (Фон · Контент · Всплывающее окно · Опции · Боковая панель · Панель инструментов разработчика)
17+
18+
[English](./README.md) · [简体中文](./docs/README.zh-CN.md) · [French](./docs/README.fr-FR.md) · [Deutsch](./docs/README.de-DE.md) · [Русский](./docs/README.ru-RU.md) · [日本語](./docs/README.ja-JP.md)
19+
20+
## Установка
21+
22+
> Node >= 14.18.0
23+
24+
```bash
25+
# Используйте команду npm-create или pnpm или yarn
26+
λ npm create chrome-ext
27+
28+
# или используйте команду npx
29+
λ npx create-chrome-ext
30+
31+
# или используйте команду npm-init
32+
λ npm init chrome-ext
33+
```
34+
35+
## Использование
36+
37+
Вы также можете непосредственно указать имя проекта и шаблон, который вы хотите использовать, с помощью дополнительных опций командной строки. Например, для создания скелета проекта Vite + Svelte, выполните:
38+
39+
```bash
40+
# npm 6.x
41+
λ npm create chrome-ext@latest my-crx-app --template svelte-js
42+
43+
# или npm 7+, требуется дополнительное двойное тире:
44+
λ npm create chrome-ext@latest my-crx-app -- --template react-ts
45+
46+
# или yarn
47+
λ yarn create chrome-ext my-crx-app --template vue-ts
48+
49+
# или pnpm
50+
λ pnpm create chrome-ext my-crx-app --template vanilla-ts
51+
```
52+
53+
Вы также можете создать проект с помощью CLI `crx`, выполните:
54+
55+
```bash
56+
λ npm install create-chrome-ext --global
57+
58+
# и затем
59+
λ crx my-crx-app
60+
# или
61+
λ crx my-crx-app --template preact-js
62+
# или используйте create-chrome-exe (глобальное окружение)
63+
λ create-chrome-ext my-crx-app
64+
```
65+
66+
## Просмотр
67+
68+
![Запуск crx](./img/crx-run.png)
69+
![Установка crx](./img/crx-install.png)
70+
![Сборка crx](./img/crx-build.png)

0 commit comments

Comments
 (0)