diff --git a/README.md b/README.md index 753726c..bc315b9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ In comes the Clickbait Blocker, a Chrome browser extension to help you weed thro ## Installation -TODO: How to install this exension into your browser. +For regular usage, the extension can be [installed in the Chrome Web Store](https://chrome.google.com/webstore/detail/bdaceojfpjpfnilmonmgohmpjokabjec/). Regular updates will be made to the extension there. ## Configuration diff --git a/src/img/logo_128.png b/src/img/logo_128.png new file mode 100644 index 0000000..c6063d2 Binary files /dev/null and b/src/img/logo_128.png differ diff --git a/src/img/logo_16.png b/src/img/logo_16.png new file mode 100644 index 0000000..57b8485 Binary files /dev/null and b/src/img/logo_16.png differ diff --git a/src/img/logo_48.png b/src/img/logo_48.png new file mode 100644 index 0000000..15743ac Binary files /dev/null and b/src/img/logo_48.png differ diff --git a/src/manifest.json b/src/manifest.json index e013ae0..ad31107 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Clickbait Blocker", "description": "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.", - "version": "0.1", + "version": "0.0.2", "content_scripts": [ { "matches": ["http://*/*", "https://*/*"], @@ -13,6 +13,11 @@ "permissions": [ "storage" ], + "icons": { + "16": "img/icon_16.png", + "48": "img/icon_48.png", + "128": "img/icon_128.png" + }, "options_ui": { "page": "pages/options.html", "chrome_style": true,