Compare commits
No commits in common. "3d884e09a5b6d49a2edb75f6bb9dee54a9e696bf" and "8432825c1ecc9e2678fbb150ba58cc5f358d6778" have entirely different histories.
3d884e09a5
...
8432825c1e
|
@ -6,7 +6,7 @@
|
||||||
[![Get Re-Nav for Chrome](./images/chrome-web-store.png)](https://chrome.google.com/webstore/detail/efjignaelidacjdhleaojfmkklganjjb)
|
[![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)
|
[![Get Re-Nav for Edge](./images/microsoft.png)](https://microsoftedge.microsoft.com/addons/detail/efnkhmlaemggdlpalglioeolbbhfpiic)
|
||||||
|
|
||||||
![Latest Re-Nav screenshot](./images/re-nav-version-0-3-0.png)
|
![Latest Re-Nav screenshot](./images/re-nav-version-0-2-0.png)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 438 KiB |
|
@ -6,7 +6,7 @@ export default function createManifest(
|
||||||
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.3.0',
|
version: '0.2.0',
|
||||||
permissions: ['contextMenus', 'storage', 'tabs', 'webNavigation'],
|
permissions: ['contextMenus', 'storage', 'tabs', 'webNavigation'],
|
||||||
options_ui: {
|
options_ui: {
|
||||||
page: 'options/index.html',
|
page: 'options/index.html',
|
||||||
|
|
|
@ -49,19 +49,6 @@ export default class Usage extends Component {
|
||||||
<li>To remove a redirect click the red button with the ✗ twice.</li>
|
<li>To remove a redirect click the red button with the ✗ twice.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>Sharing & importing redirects:</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
To share a redirect, click on the button with the clipboard 📋 icon.
|
|
||||||
This will copy a link that you can share around.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
When you or someone else heads to a share link, it will show the
|
|
||||||
redirect's details and if they have Re-Nav installed it will create
|
|
||||||
an import button on the page.
|
|
||||||
</li>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<p>Some miscellaneous notes:</p>
|
<p>Some miscellaneous notes:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Only URLs starting with "http" will be checked.</li>
|
<li>Only URLs starting with "http" will be checked.</li>
|
||||||
|
|
|
@ -25,15 +25,15 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
&.enabled {
|
&.enabled {
|
||||||
--button-background-color: var(--da-4);
|
background-color: var(--da-4);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
--button-background-color: var(--da-2);
|
background-color: var(--da-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.share {
|
&.share {
|
||||||
--button-background-color: var(--da-7);
|
background-color: var(--da-7);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
background-color: var(--button-background-color, var(--da-3));
|
background-color: var(--da-3);
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--db-1);
|
color: var(--db-1);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
Loading…
Reference in New Issue