Compare commits
4 Commits
54f509d08d
...
4f9b7b81e0
Author | SHA1 | Date |
---|---|---|
|
4f9b7b81e0 | |
|
8faf71e7bf | |
|
fc1e632a5f | |
|
1b5eff7030 |
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
> **Navigation redirects for the masses.**
|
> **Navigation redirects for the masses.**
|
||||||
|
|
||||||
|
[](https://addons.mozilla.org/firefox/addon/re-nav)
|
||||||
|
[](https://chrome.google.com/webstore/detail/efjignaelidacjdhleaojfmkklganjjb)
|
||||||
|
[](https://microsoftedge.microsoft.com/addons/detail/efnkhmlaemggdlpalglioeolbbhfpiic)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Installation
|
## 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,
|
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;
|
||||||
|
|
Loading…
Reference in New Issue