Compare commits

...

5 Commits

5 changed files with 8 additions and 4 deletions

View File

@ -2,9 +2,11 @@
> Inject custom DuckDuckGo Bangs into your browsing experience. > Inject custom DuckDuckGo Bangs into your browsing experience.
[![Fangs on AMO](https://img.shields.io/amo/v/fangs)](https://addons.mozilla.org/firefox/addon/fangs) [![Get Fangs for Firefox](./images/mozilla-addons.png)](https://addons.mozilla.org/firefox/addon/fangs)
[![Get Fangs for Chrome](./images/chrome-web-store.png)](https://chrome.google.com/webstore/detail/dlllfannplfkhbiidhihagjkbmcolclf)
[![Get Fangs for Edge](./images/microsoft.png)](https://microsoftedge.microsoft.com/addons/detail/fgfkpbflhnljpfniippaagjjlncobhjd)
![Fangs 0.1.3](./screenshots/fangs-version-0-1-3.png) ![Fangs 0.1.3](./images/fangs-version-0-1-3.png)
## Installation ## Installation

BIN
images/chrome-web-store.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
images/microsoft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
images/mozilla-addons.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -7,8 +7,8 @@ export default function createManifest(
name: 'Fangs', name: 'Fangs',
description: description:
'Inject custom DuckDuckGo Bangs into your browsing experience.', 'Inject custom DuckDuckGo Bangs into your browsing experience.',
version: '0.1.4', version: '0.1.5',
permissions: ['storage', 'tabs', 'webNavigation'], permissions: ['storage', 'webNavigation'],
options_ui: { options_ui: {
page: 'options/index.html', page: 'options/index.html',
open_in_tab: true, open_in_tab: true,
@ -19,6 +19,8 @@ export default function createManifest(
128: 'assets/fangs-128.png', 128: 'assets/fangs-128.png',
}; };
manifest.icons = icons;
const browserAction = { const browserAction = {
default_icon: icons, default_icon: icons,
}; };