Update GoogleSearchReplace.plugin.js

This commit is contained in:
Mirco Wittrien 2021-10-14 16:37:41 +02:00
parent fa92b96c4d
commit a54ac71e77
1 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* @name GoogleSearchReplace
* @author DevilBro
* @authorId 278543574059057154
* @version 1.3.1
* @version 1.3.2
* @description Replaces the default Google Text Search with a custom Search Engine
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
@ -17,12 +17,12 @@ module.exports = (_ => {
"info": {
"name": "GoogleSearchReplace",
"author": "DevilBro",
"version": "1.3.1",
"version": "1.3.2",
"description": "Replaces the default Google Text Search with a custom Search Engine"
},
"changeLog": {
"added": {
"StackOverflow": "Added StackOverflow as search engine"
"Ecosia": "Added Ecosia as search engine"
}
}
};
@ -85,6 +85,7 @@ module.exports = (_ => {
Bing: {value: true, name: "Bing", url: "https://www.bing.com/search?q=" + textUrlReplaceString},
DogPile: {value: true, name: "DogPile", url: "http://www.dogpile.com/search/web?q=" + textUrlReplaceString},
DuckDuckGo: {value: true, name: "DuckDuckGo", url: "https://duckduckgo.com/?q=" + textUrlReplaceString},
Ecosia: {value: true, name: "Ecosia", url: "https://www.ecosia.org/search?q=" + textUrlReplaceString},
GitHub: {value: true, name: "GitHub", url: "https://github.com/search?q=" + textUrlReplaceString},
Google: {value: true, name: "Google", url: "https://www.google.com/search?q=" + textUrlReplaceString},
GoogleScholar: {value: true, name: "Google Scholar", url: "https://scholar.google.com/scholar?q=" + textUrlReplaceString},