Skip to content

Commit 8b45de8

Browse files
committed
Add privacy policy and version info
Privacy Policy is needed for the Mozilla Add-Ons store. Nothing changed - no information is collected by the add-on
1 parent 476462d commit 8b45de8

File tree

14 files changed

+127
-3
lines changed

14 files changed

+127
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
WebExtension which adds an option to the context menu to search with an image on various services, such as Google, Bing, Yandex, TinEye, SauceNAO and IQDB. The user can also add custom search engines. Has options to open the search page in a background tab and left or right to the current tab or at the end of the tabstrip, too.
44

5+
This extension does not collect, transmit, or store any user data. All image searches are performed client-side by opening user-configured reverse image search engines in new tabs. No information is sent to third parties by the extension itself.
6+
57
## Installation
68

79
- Available for Firefox on [addons.mozilla.org](https://addons.mozilla.org/firefox/addon/image-reverse-search/)
@@ -11,11 +13,12 @@ WebExtension which adds an option to the context menu to search with an image on
1113

1214
## Features
1315

14-
- Add multiple custom search providers with your own URL
16+
- Add multiple custom search providers with your own URL (supports GET and POST, POST only sends the URL currently)
1517
- Name them and upload a custom icon
1618
- Show multiple search providers in a submenu
1719
- Open search page left, right or at the end
1820
- Open search page in background or foreground
21+
- Additional configuration options like URL encoding and strip protocol
1922

2023
## Development
2124

@@ -24,6 +27,11 @@ WebExtension which adds an option to the context menu to search with an image on
2427
3. `npm run dev`
2528
4. `npm run start:chrome` or `npm run start:firefox`
2629

30+
## Build production version
31+
32+
1. `npm ci`
33+
2. `npm run web-ext:build`
34+
2735
## Screenshots
2836

2937
![Screenshot](screenshot.png?raw=true "Screenshot")

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reverse-image-search",
33
"description": "Reverse Image Search",
4-
"version": "4.4.0",
4+
"version": "4.4.1",
55
"author": "Brawl345",
66
"license": "Unlicense",
77
"repository": {

public/_locales/de/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"redirectingToSearchEngine": {
126126
"message": "Weiterleitung zur Suchmaschine..."
127+
},
128+
"privacyPolicy": {
129+
"message": "Datenschutzerklärung"
130+
},
131+
"version": {
132+
"message": "Version $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/en/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"redirectingToSearchEngine": {
126126
"message": "Redirecting to search engine..."
127+
},
128+
"privacyPolicy": {
129+
"message": "Privacy Policy"
130+
},
131+
"version": {
132+
"message": "Version $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/es/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"stripProtocolLabel": {
126126
"message": "Eliminar protocolo de la URL de la imagen"
127+
},
128+
"privacyPolicy": {
129+
"message": "Política de Privacidad"
130+
},
131+
"version": {
132+
"message": "Versión $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/fr/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"stripProtocolLabel": {
126126
"message": "Supprimer le protocole de l'URL de l'image"
127+
},
128+
"privacyPolicy": {
129+
"message": "Politique de Confidentialité"
130+
},
131+
"version": {
132+
"message": "Version $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/ja/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"stripProtocolLabel": {
126126
"message": "画像URLからプロトコルを削除"
127+
},
128+
"privacyPolicy": {
129+
"message": "プライバシーポリシー"
130+
},
131+
"version": {
132+
"message": "バージョン $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/pt_BR/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"stripProtocolLabel": {
126126
"message": "Remover protocolo da URL da imagem"
127+
},
128+
"privacyPolicy": {
129+
"message": "Política de Privacidade"
130+
},
131+
"version": {
132+
"message": "Versão $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/sv/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"stripProtocolLabel": {
126126
"message": "Ta bort protokoll från bild-URL"
127+
},
128+
"privacyPolicy": {
129+
"message": "Integritetspolicy"
130+
},
131+
"version": {
132+
"message": "Version $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

public/_locales/tr/messages.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,16 @@
124124
},
125125
"stripProtocolLabel": {
126126
"message": "Görsel URL'sinden protokolü kaldır"
127+
},
128+
"privacyPolicy": {
129+
"message": "Gizlilik Politikası"
130+
},
131+
"version": {
132+
"message": "Sürüm $version$",
133+
"placeholders": {
134+
"version": {
135+
"content": "$1"
136+
}
137+
}
127138
}
128139
}

0 commit comments

Comments
 (0)