Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

## What is Yahbingle?

Tired of making the decision as to which of the three most mainstream search engines you should use for your query? Neither am I. But if you are, you can now leave the decision making up to Yahbingle! Yahbingle will choose a search engine at random from Bing, Google and Yahoo to make your search.
Tired of making the decision as to which of the four most mainstream search engines you should use for your query? Neither am I. But if you are, you can now leave the decision making up to Yahbingle! Yahbingle will choose a search engine at random from Bing, Google, DuckDuckGo, and Yahoo to make your search.

## Why?
...
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Your new favorite search engine. Search with Yahoo, Bing or Google with just one click.">
<meta name="keywords" content="google, yahoo, bing, search, search, engine, random">
<meta name="description" content="Your new favorite search engine. Search with Yahoo, Bing, DuckDuckGo, or Google with just one click.">
<meta name="keywords" content="google, yahoo, bing, duckduckgo, search, search, engine, random">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="./static/css/main.css">
<title>Yahbingle</title>
Expand Down
Binary file modified static/img/yahbingle-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/yahbingle-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion static/js/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

SEARCH_URLS = ["https://google.com/search?q=","https://bing.com/search?q=","https://search.yahoo.com/search?q="];
SEARCH_URLS = ["https://google.com/search?q=","https://bing.com/search?q=","https://search.yahoo.com/search?q=","https://duckduckgo.com/?q="];
GOOGLE_SEARCH_URL = "https://google.com/search?q=";

function search(){
Expand Down