Compare commits

...

4 Commits

Author SHA1 Message Date
Bauke 4f9b7b81e0
Version 0.1.1! 2022-11-04 14:04:54 +01:00
Bauke 8faf71e7bf
Add the store badges. 2022-11-03 21:54:10 +01:00
Bauke fc1e632a5f
Add the AMO UUID. 2022-11-02 13:10:12 +01:00
Bauke 1b5eff7030
Capitalize Re-Nav in the manifest. 2022-11-02 13:05:48 +01:00
5 changed files with 11 additions and 2 deletions

View File

@ -2,6 +2,10 @@
> **Navigation redirects for the masses.** > **Navigation redirects for the masses.**
[![Get Re-Nav for Firefox](./images/mozilla-addons.png)](https://addons.mozilla.org/firefox/addon/re-nav)
[![Get Re-Nav for Chrome](./images/chrome-web-store.png)](https://chrome.google.com/webstore/detail/efjignaelidacjdhleaojfmkklganjjb)
[![Get Re-Nav for Edge](./images/microsoft.png)](https://microsoftedge.microsoft.com/addons/detail/efnkhmlaemggdlpalglioeolbbhfpiic)
![Latest Re-Nav screenshot](./images/re-nav-version-0-1-0.png) ![Latest Re-Nav screenshot](./images/re-nav-version-0-1-0.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

@ -4,9 +4,9 @@ export default function createManifest(
target: string, target: string,
): Record<string, unknown> { ): Record<string, unknown> {
const manifest: Record<string, unknown> = { const manifest: Record<string, unknown> = {
name: 're-nav', name: 'Re-Nav',
description: 'Navigation redirects for the masses.', description: 'Navigation redirects for the masses.',
version: '0.1.0', version: '0.1.1',
permissions: ['storage', 'webNavigation'], permissions: ['storage', 'webNavigation'],
options_ui: { options_ui: {
page: 'options/index.html', page: 'options/index.html',
@ -39,6 +39,11 @@ export default function createManifest(
manifest.background = { manifest.background = {
scripts: [backgroundScript], scripts: [backgroundScript],
}; };
manifest.applications = {
gecko: {
id: '{2dd6149a-403e-4e67-9cf8-5fe64e16c909}',
},
};
} }
return manifest; return manifest;