Skip to content

Commit f3f52d4

Browse files
Merge pull request #11 from size12husky/new-branch
Added VisualBasic to list of languages #7
2 parents 4f5fe54 + 6a25d43 commit f3f52d4

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

PRIVACY_POLICY.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Privacy Policy for CodeTranslateAI
2+
3+
**Last Updated:** July 23, 2025
4+
5+
Thank you for using CodeTranslateAI. This privacy policy explains how our extension handles data. The source code for this extension is publicly available on **[GitHub](https://github.com/dineshsutihar/CodeTranslateAI)**.
6+
7+
## Data Collection and Usage
8+
9+
CodeTranslateAI is designed with your privacy in mind.
10+
11+
1. **Website Content (Code Snippets):** The core function of this extension is to translate code. When you select a piece of code on a webpage and activate the translation, that selected text is sent to our secure backend, which then forwards it to the Google Gemini API to perform the translation.
12+
13+
2. **No Personal Information:** We do not collect, store, or transmit any personally identifiable information (PII), such as your name, email, IP address, or Browse history.
14+
15+
3. **Data Anonymity:** The code snippets sent for translation are not associated with you or your account in any way.
16+
17+
## Data Storage
18+
19+
Translated code snippets are cached locally on your device using `chrome.storage.local` to improve performance and avoid repeat API calls. This data is stored only in your browser and is not accessible to us. The cache is designed to automatically clear items after 10 days.
20+
21+
## Data Sharing
22+
23+
We do not sell, trade, or otherwise transfer your data to outside parties. The only data transfer occurs for the explicit purpose of providing the translation service via the Google Gemini API.
24+
25+
## Contact Us
26+
27+
If you have any questions about this privacy policy, please **[open an issue on our GitHub repository](https://github.com/dineshsutihar/CodeTranslateAI/issues)**.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CodeTranslateAI 🚀
22

33
<p align="center">
4-
<img src="/mnt/code/Codes/FullStack/projects/CodeTranslateAI/frontend/images/icons/icon128.png" alt="CodeTranslateAI Logo" width="128">
4+
<img src="frontend/images/icons/icon128.png" alt="CodeTranslateAI Logo" width="128">
55
</p>
66

77
<h3 align="center">Seamless On-Page Code Translation, Powered by AI</h3>

frontend/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "CodeTranslateAI",
4-
"version": "1.1.0",
4+
"version": "2.0.0",
55
"description": "Select code on a page and get instant AI-powered translation.",
66
"author": "Dinesh Kumar Sutihar",
77
"permissions": ["activeTab", "storage"],

frontend/popup.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ <h1>CodeTranslateAI</h1>
2525
<option value="PHP">PHP</option>
2626
<option value="Python">Python</option>
2727
<option value="Ruby">Ruby</option>
28+
<option value="VisualBasic">Visual Basic</option>
2829
</select>
2930
</div>
3031

0 commit comments

Comments
 (0)