diff --git a/README.md b/README.md index 3fdf6aa..9768096 100644 --- a/README.md +++ b/README.md @@ -33,13 +33,16 @@ Available on the Mozilla Add On Store. Get it [here](https://addons.mozilla.org/en-US/firefox/addon/minimal-startpage/). -## Signing the extension for Personal Use +### Installing & Signing the extension manually (for personal use) for access to css/js files. -Yes, you can sign the extension with your own unique signature and use it personally. +If you would like access to css/js to change them you must build and sign the extension yourself. -[Here's](https://github.com/deepjyoti30/startpage/wiki/How-to-sign-the-extension-for-Personal-Use-on-Firefox) how to do it. +- Get the latest release (zip) or clone this repo and extract it. +- Change the config to your liking +- Follow [these](https://github.com/deepjyoti30/startpage/wiki/How-to-sign-the-extension-for-Personal-Use-on-Firefox) instructions on building and signing for personal use. ->NOTE: Above is only necessary for Firefox users since Chrome let's you use without signing. +>NOTE: Building/Signing is only necessary for Firefox users since Chrome lets you use without signing. +>NOTE: You must re-build and sign every time you need to update your config. Steps for updating are outlined in the instructions. ## Settings diff --git a/css/main.css b/css/main.css index de2ad3f..e67cb9b 100644 --- a/css/main.css +++ b/css/main.css @@ -57,8 +57,7 @@ body { .main #other-content .sqr { vertical-align: top; display: inline-block; - margin-left: 5px; - margin-right: 5px; + margin: 5px; width: 170px; background: #2e2e2e; padding: 15px 15px; diff --git a/js/main.js b/js/main.js index 6243422..697a886 100644 --- a/js/main.js +++ b/js/main.js @@ -31,7 +31,8 @@ searchEngines = { "Google": "https://www.google.com/search?q=", "DuckDuckGo": "https://duckduckgo.com/?q=", "Bing": "https://www.bing.com/search?q=", - "Yahoo": "https://search.yahoo.com/search?p=" + "Yahoo": "https://search.yahoo.com/search?p=", + "Ecosia": "https://www.ecosia.org/search?q=" } validWeatherUnit = [ "fah", "cel" diff --git a/manifest.json b/manifest.json index 98b0dd4..6026fd9 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "minimal-startpage", "short_name": "minimal-startpage", - "version": "0.1", + "version": "0.1.1", "description": "Overrides the browsers newtab page with a custom startpage.", "author": "deepjyoti30",