Ecosia as default search engine
- 
					
					
					
					
A Former User last edited byOpera doesn't allow you to set Ecosia as the default search engine. 
 I'm just posting this solution to be helpful.The following is a workaround. - Set DuckDuckGo.com as your default search engine.
- Install TamperMonkey extension.
- Enter the following script into TamperMonkey.
 This will redirect your search from DuckDuckGo.com to Ecosia.org automatically. So Ecosia.com becomes your default search engine. Note: 
 NEVER use scripts from unknown sources.
 This is just a one line command, redirecting you.
 I'm posting the full code here so everyone can review it.Code: // ==UserScript== // @name Ecosia Default Search Engine in Opera // @namespace http://tampermonkey.net/ // @version 0.1 // @description Sets Ecosia as default search engine by automatically redirecting you // when you search in DuckDuckGo. // @author Hagbard Hednig // @match http*://*duckduckgo.com/*?*q=* // ==/UserScript== (function() { location.href=('https://www.ecosia.org/search?'+window.location.href.substring(window.location.href.indexOf('q='),window.location.href.length)); })();
- 
					
					
					
					
A Former User last edited bySorry, but how do you actually turn this on? 
 I installed Tampermonkey and copied the script in and the dashboard says it's enabled, but Tampermonkey says no scripts are running and a search on DuckDuckGo just searches on DuckDuckGo.