Navigate Up WE

Navigate up one or more URL levels.

Τι είναι το Navigate Up WE;

Το Navigate Up WE είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DW-dev, και η κύρια λειτουργία του είναι "Navigate up one or more URL levels.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Navigate Up WE

Λήψη αρχείων επέκτασης Navigate Up WE σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        CHANGES

Version 31.2

• Minor bug fix.

OVERVIEW

Navigate Up WE provides a simple facility to navigate up one or more levels of the URL path.

Navigate Up WE is an alternative no-restart version of the well established Navigate Up add-on.

Navigate Up WE is implemented using the new WebExtensions API and is available for both Firefox and Chrome with identical functions and user interfaces.

OPTIONS PAGE

The Navigate Up WE Options page can be accessed as follows:

• Firefox - On the menu bar select Tools > Add-ons (or press Ctrl+Shift+A), select the Extensions tab, and then click on the Options button.

• Chrome - Right-click on the toolbar button, and then select Options.

TOOLBAR BUTTON

After installation of Navigate Up WE, there will be a new green 'up-arrow' button on the main toolbar.

If Navigate Up WE cannot be used with the current page, the toolbar button will be disabled (greyed-out).

To navigate up, just click on the Navigate Up WE icon.

There is an option to set the button action as:

• Navigate Up One Level
• Navigate Up to Root

There is an option to double-click on the button to Navigate Up To Root.

CONTEXT MENU & BUTTON MENU

To navigate up to a specific level, right-click on the page contents to open the context menu, select the Navigate Up WE sub-menu, and then select one of the menu items.

Alternatively, right-click on the Navigate Up WE toolbar button to open the button menu, and then select one of the menu items.

The menus are divided into two sections:

• The first contains two menu items for quick access - Navigate Up One Level and Navigate Up To Root.

• The second contains menu items for each higher level URL, plus one or two menu items for related high level URLs.

There is an option to show/hide the Navigate Up WE submenu item on the context menu.

There are options to show/hide the Navigate Up One Level and Navigate Up To Root menu items.

There is an option to open higher-level URLs (shown in menus) in new background/foreground tabs.

KEYBOARD SHORTCUTS

To navigate up, press Alt+U. 

SUPPORT

Please e-mail:  [email protected]

LICENSE

Distributed under the GNU General Public License version 2.
See LICENCE.txt file and http://www.gnu.org/licenses/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Navigate Up WE Navigate Up WE
ID enpignbamdhfjfipfefolmfbjhpkabpm
Επίσημο URL https://chromewebstore.google.com/detail/navigate-up-we/enpignbamdhfjfipfefolmfbjhpkabpm
Περιγραφή Navigate up one or more URL levels.
Μέγεθος Αρχείου 60.68 KB
Αριθμός Εγκαταστάσεων 891
Τρέχουσα Έκδοση 31.2
Τελευταία Ενημέρωση 2022-11-01
Ημερομηνία Δημοσίευσης 2020-05-20
Αξιολόγηση 3.13/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής DW-dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Navigate Up WE",
    "version": "31.2",
    "description": "Navigate up one or more URL levels.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128-96.png"
    },
    "minimum_chrome_version": "88",
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "contextMenus",
        "scripting",
        "notifications",
        "storage"
    ],
    "host_permissions": [],
    "action": {
        "default_icon": {
            "16": "icon16.png"
        },
        "default_title": "Navigate Up WE"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": {
            "description": "Navigate Up",
            "suggested_key": {
                "default": "Alt+U"
            }
        }
    }
}