NavigUp

Go to parent address. Use Alt+Up (Shift = +1, Ctrl = +2 levels) or click the icon (many times = many levels).

NavigUpคืออะไร?

NavigUp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://przemoc.net และคุณลักษณะหลักของมันคือ "Go to parent address. Use Alt+Up (Shift = +1, Ctrl = +2 levels) or click the icon (many times = many levels)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NavigUp

ดาวน์โหลดไฟล์ส่วนขยาย NavigUp ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Navigate to parent address. It means removing page anchor (#xxx), query string (?xxx), file or the last directory (/xxx), port number (:xxx), sub-domain (xxx.) or secure layer (https -> http), whichever is first found (preserving mentioned order).

You can use the mouse and click NavigUp's icon (present on the right side of the address bar) or go with the keyboard and press one of the supported shortcuts.

== Shortcuts ==
Use (Ctrl+)(Shift+)Alt+Up for it. Shift means going up one more level, Ctrl - additional two levels. Ctrl and Shift can be combined. If you click extension's icon (in the address bar) many times within one third of second, then you'll go up many levels at once.

== Permissions ==
1. "Access your data on all websites."
(content script executed when URL matches "http://*/*", "https://*/*", "ftp://*/*")
Content script is used only for catching keyboard shortcuts (commands API doesn't support Ctrl+Alt combinations) and setting up a popup (if it is turned on).
2. "Access your tabs and browsing activity."
("tabs" permission)
"tabs" permission is a broad one, but it is used only for accessing or modifying particular tab's URL within background page.

== File scheme ==
If you install NavigUp from Chrome Web Store, then it's not supported. However, some users browse occasionally local file system using Chrome to load some files. NavigUp is also very useful in this case, but setting content script to match also file: addresses gives you following message during installation: "This extension will have full access to your computer and private data." File scheme is supported only in the version hosted at my website.

== Changed name ==
Older version of this extension was called "GoUp". I came up with this name and I liked it, because it was the simplest self-explanatory title. I published the extension in November 2009 on my site and chromeextensions.org. Back then, as a Uppity user, I wasn't aware of the another Firefox add-on doing same job. That add-on is called Go Up. I don't like reusing already existing names, especially by similar projects, so decision about renaming was obvious solution for this unpleasant situation.

Later I also found out, that a few weeks after my announcement of GoUp, Christophe Benz created (according to his GitHub repository first commit was authored on December 11, 2009) "Go Up" extension (notice the space between Go and Up, so it’s the exact name of existing Firefox add-on). Thus I was even more convinced that changing name was the right thing.

== License ==
Extension's code is licensed under Affero GPL v3.
Icon is licensed under GPL v2.

== Credits ==
Icon is done by Marco Tessarotto and it's part of Ultimate Gnome icon theme.
https://sites.google.com/site/ultimate-gnome/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NavigUp NavigUp
ID eigojmmlmgigbldiclbpibmjnlbdpiaa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/navigup/eigojmmlmgigbldiclbpibmjnlbdpiaa
คำอธิบาย Go to parent address. Use Alt+Up (Shift = +1, Ctrl = +2 levels) or click the icon (many times = many levels).
ขนาดไฟล์ 52.42 KB
จำนวนการติดตั้ง 2,673
เวอร์ชันปัจจุบัน 0.4.0
อัปเดตครั้งล่าสุด 2013-09-12
วันที่เผยแพร่ 2013-09-11
คะแนน 4.05/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา https://przemoc.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://plus.google.com/b/109064229194971045155/109064229194971045155/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NavigUp",
    "description": "Go to parent address. Use Alt+Up (Shift = +1, Ctrl = +2 levels) or click the icon (many times = many levels).",
    "version": "0.4.0",
    "author": "Przemys\u0142aw Pawe\u0142czyk",
    "manifest_version": 2,
    "minimum_chrome_version": "29",
    "icons": {
        "19": "images\/icon19.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "page_action": {
        "default_icon": "images\/icon19.png",
        "default_title": "Go up"
    },
    "background": {
        "page": "navigup_back.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "js": [
                "navigup_cont.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "navigup_opts.html",
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+PageUp"
            }
        }
    },
    "permissions": [
        "tabs"
    ]
}