Compare commits
No commits in common. "4f9b7b81e02b164ed60b0c173c9b98a61299d73a" and "54f509d08d6eb7607fa049155c59659f4f4fcf51" have entirely different histories.
4f9b7b81e0
...
54f509d08d
|
@ -2,10 +2,6 @@
|
||||||
|
|
||||||
> **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
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 18 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.3 KiB |
|
@ -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.1',
|
version: '0.1.0',
|
||||||
permissions: ['storage', 'webNavigation'],
|
permissions: ['storage', 'webNavigation'],
|
||||||
options_ui: {
|
options_ui: {
|
||||||
page: 'options/index.html',
|
page: 'options/index.html',
|
||||||
|
@ -39,11 +39,6 @@ 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;
|
||||||
|
|
Loading…
Reference in New Issue