Compare commits
4 Commits
54f509d08d
...
4f9b7b81e0
Author | SHA1 | Date |
---|---|---|
Bauke | 4f9b7b81e0 | |
Bauke | 8faf71e7bf | |
Bauke | fc1e632a5f | |
Bauke | 1b5eff7030 |
|
@ -2,6 +2,10 @@
|
|||
|
||||
> **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)
|
||||
|
||||
## Installation
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
|
@ -4,9 +4,9 @@ export default function createManifest(
|
|||
target: string,
|
||||
): Record<string, unknown> {
|
||||
const manifest: Record<string, unknown> = {
|
||||
name: 're-nav',
|
||||
name: 'Re-Nav',
|
||||
description: 'Navigation redirects for the masses.',
|
||||
version: '0.1.0',
|
||||
version: '0.1.1',
|
||||
permissions: ['storage', 'webNavigation'],
|
||||
options_ui: {
|
||||
page: 'options/index.html',
|
||||
|
@ -39,6 +39,11 @@ export default function createManifest(
|
|||
manifest.background = {
|
||||
scripts: [backgroundScript],
|
||||
};
|
||||
manifest.applications = {
|
||||
gecko: {
|
||||
id: '{2dd6149a-403e-4e67-9cf8-5fe64e16c909}',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
return manifest;
|
||||
|
|
Loading…
Reference in New Issue