This fork adds multi-language support (i18n) to the original AWS-BuildID-Auto-For-Ext project.
- 🇨🇳 Chinese (Simplified) - zh_CN (Default)
- 🇬🇧 English - en
- 🇹🇷 Turkish - tr
- Clone the repository:
git clone https://github.com/[your-username]/AWS-BuildID-Auto-For-Ext.git
cd AWS-BuildID-Auto-For-Ext-
Load in Chrome:
- Open Chrome
- Go to
chrome://extensions/ - Enable "Developer mode" in the top right
- Click "Load unpacked"
- Select the project folder
-
Enable incognito mode permission:
- Click "Details" on the extension card
- Enable "Allow in incognito"
- Refresh the extension (click 🔄 icon)
The extension automatically detects your browser language settings:
- Chrome Settings → Languages (
chrome://settings/languages) - Move your preferred language to the top of the Preferred languages list
- Restart Chrome
- The extension will now display in your language
zh-CN,zh→ Chineseen,en-US,en-GB→ Englishtr,tr-TR→ Turkish- Other languages → Chinese (default)
All original features are preserved:
- ✅ Semi-automatic registration
- ✅ Batch registration (1-100)
- ✅ Gmail unlimited aliases
- ✅ Incognito mode
- ✅ Token management
- ✅ Token validation
- ✅ Kiro IDE synchronization
For detailed usage, see the original documentation.
Pull requests for new language translations or improvements are welcome!
MIT License - Same as the original project
此分支为原始 AWS-BuildID-Auto-For-Ext 项目添加了多语言支持 (i18n)。
- 🇨🇳 简体中文 - zh_CN(默认)
- 🇬🇧 英语 - en
- 🇹🇷 土耳其语 - tr
- 克隆仓库:
git clone https://github.com/[your-username]/AWS-BuildID-Auto-For-Ext.git
cd AWS-BuildID-Auto-For-Ext-
在 Chrome 中加载:
- 打开 Chrome
- 访问
chrome://extensions/ - 开启右上角的**"开发者模式"**
- 点击**"加载已解压的扩展程序"**
- 选择项目文件夹
-
启用无痕模式权限:
- 点击扩展卡片上的**"详细信息"**
- 启用**"在无痕模式下启用"**
- 刷新扩展(点击 🔄 图标)
扩展会自动检测您的浏览器语言设置:
- Chrome 设置 → 语言 (
chrome://settings/languages) - 将您的首选语言移至首选语言列表顶部
- 重启 Chrome
- 扩展现在将以您的语言显示
zh-CN,zh→ 中文en,en-US,en-GB→ 英语tr,tr-TR→ 土耳其语- 其他语言 → 中文(默认)
保留所有原始功能:
- ✅ 半自动注册
- ✅ 批量注册(1-100)
- ✅ Gmail 无限别名
- ✅ 无痕模式
- ✅ Token 管理
- ✅ Token 验证
- ✅ Kiro IDE 同步
详细使用方法请参见原始文档。
欢迎提交新语言翻译或改进的 Pull Request!
MIT License - 与原项目相同
Bu fork, orijinal AWS-BuildID-Auto-For-Ext projesine çok dilli destek (i18n) ekler.
- 🇨🇳 Çince (Basitleştirilmiş) - zh_CN (Varsayılan)
- 🇬🇧 İngilizce - en
- 🇹🇷 Türkçe - tr
- Repoyu klonlayın:
git clone https://github.com/[your-username]/AWS-BuildID-Auto-For-Ext.git
cd AWS-BuildID-Auto-For-Ext-
Chrome'da yükleyin:
- Chrome'u açın
chrome://extensions/adresine gidin- Sağ üstteki "Geliştirici modu" açın
- "Paketlenmemiş uzantı yükle" tıklayın
- Proje klasörünü seçin
-
Gizli mod iznini etkinleştirin:
- Uzantı kartında "Ayrıntılar" tıklayın
- "Gizli modda izin ver" seçeneğini açın
- Uzantıyı yenileyin (🔄 simgesine tıklayın)
Uzantı, tarayıcınızın dil ayarlarını otomatik algılar:
- Chrome Ayarlar → Diller (
chrome://settings/languages) - Tercih edilen diller listesinde dilinizi en üste taşıyın
- Chrome'u yeniden başlatın
- Uzantı artık dilinizde görünecektir
zh-CN,zh→ Çinceen,en-US,en-GB→ İngilizcetr,tr-TR→ Türkçe- Diğer diller → Çince (varsayılan)
Tüm orijinal özellikler korunmuştur:
- ✅ Yarı otomatik kayıt
- ✅ Toplu kayıt (1-100)
- ✅ Gmail sınırsız takma ad
- ✅ Gizli mod
- ✅ Token yönetimi
- ✅ Token doğrulama
- ✅ Kiro IDE senkronizasyonu
Detaylı kullanım için orijinal dokümantasyona bakın.
Yeni dil çevirileri veya iyileştirmeler için pull request gönderin!
MIT License - Orijinal proje ile aynı
_locales/
├── zh_CN/
│ └── messages.json # Chinese translations
├── en/
│ └── messages.json # English translations
└── tr/
└── messages.json # Turkish translations
- Create
_locales/[language_code]/messages.json - Copy
zh_CN/messages.json - Translate all
messagevalues - Restart Chrome
- Add the new key to all language files:
{
"newKey": {
"message": "Translated text"
}
}- Use in HTML:
<span data-i18n="newKey">Default text</span>- Use in JavaScript:
const text = i18n('newKey');Made with ❤️ by the community
Original project: Specia1z/AWS-BuildID-Auto-For-Ext