Alt+Up

Go to parent address. Use Alt+Up to move up one level like in many file browsers.

Τι είναι το Alt+Up;

Το Alt+Up είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daniel Forssten, και η κύρια λειτουργία του είναι "Go to parent address. Use Alt+Up to move up one level like in many file browsers.".

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

screenshot

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

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

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

                        Go to parent address. This means removing the page anchor (#xxx), query string (?xxx), file or the last directory (/xxx) or sub-domain (xxx.), whichever is first found (preserving mentioned order).

This extension is a fork of Przemysław Pawełczyk's otherwise excellent – but seemingly stalled – extension NavigUp 0.4.0. The major changes I've made are:

• Keyboard shortcuts will work as long as Chrome has focus. They don't require the actual page content to have the focus.
• Removed extension icon from cluttering the address bar
• Works on ftp:// and file:// schemes
• Extension requires less permissions
• SSL connections are no longer downgraded
• Optional keyboard shortcuts for going all the way up to the domain and subdomain address root level

== Shortcuts ==
Defaults to Alt+Up or Command+Up on Mac. The shortcuts for going all the way up to the domain and subdomain address root levels are by default unassigned. These shortcuts can be changed on the "Extensions" page's menu, under "Keyboard shortcuts."

== Permissions ==
"Access your tabs and browsing activity."
("tabs" permission)
The "tabs" permission is a broad one, but it is used only for setting the current tab's URL when the keyboard shortcut is used.

== License ==
Extension is licensed under Affero GPL v3.

== Version History ==
1.0.3
• Some code cleanup

1.0.2
• Added optional shortcut for going all the way up to the subdomain root address

1.0.1
• Future-proofing by replacing a deprecated function call

1.0.0
• Initial version

== Privacy Policy ==
This extension does not collect or share user data in any way.                    

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

Όνομα Alt+Up Alt+Up
ID anfiimioedfkakckiolgkadafokljikc
Επίσημο URL https://chromewebstore.google.com/detail/alt+up/anfiimioedfkakckiolgkadafokljikc
Περιγραφή Go to parent address. Use Alt+Up to move up one level like in many file browsers.
Μέγεθος Αρχείου 20.34 KB
Αριθμός Εγκαταστάσεων 213
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2018-10-01
Ημερομηνία Δημοσίευσης 2018-10-01
Αξιολόγηση 4.38/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Daniel Forssten
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Alt+Up",
    "description": "Go to parent address. Use Alt+Up to move up one level like in many file browsers.",
    "version": "1.0.3",
    "author": "Daniel Forssten",
    "manifest_version": 2,
    "minimum_chrome_version": "29",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "up:1": {
            "suggested_key": {
                "default": "Alt+Up",
                "mac": "Command+Up"
            },
            "description": "Go up one level"
        },
        "up:-1": {
            "description": "Go up to domain root level"
        },
        "up:-1:path": {
            "description": "Go up to subdomain root level"
        }
    }
}