ezUP

Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).

ezUP là gì?

ezUP là một tiện ích mở rộng Chrome được phát triển bởi ezanker, và tính năng chính của nó là "Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ezUP

Tải xuống các tệp mở rộng ezUP dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ezUP adds an up arrow button to the omnibox (address bar).  When you press the button a list of urls appears that lets you navigate up through the site hierarchy from the current url.

Click the links to navigate to the urls within the tab or click the new tab/new window icons to open the urls in a new tab or new window.

Aditionally, from within a page, press the keyboard shortcut: ctrl+alt+u to go up one level immediately.  The keyboard shortcut also works within frames on the page, so it will work within my ezLinkPreview extension popups:  https://chrome.google.com/webstore/detail/nnkcfbiefgdaceeplickkkmifpicbpcc                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ezUP ezUP
ID hnomiiicdikiogeolpgmpdmcilkgjdco
URL Chính Thức https://chromewebstore.google.com/detail/ezup/hnomiiicdikiogeolpgmpdmcilkgjdco
Mô tả Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).
Kích Thước Tệp 51.44 KB
Số Lần Cài Đặt 207
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2012-07-10
Ngày Phát Hành 2012-07-10
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ezanker
Loại Thanh Toán free
Trang Web Mở Rộng http://www.simpledifference.com/ezanker/ezup.aspx
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "name": "ezUP",
    "version": "1.5",
    "manifest_version": 2,
    "description": "Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).",
    "icons": {
        "48": "ez48.png",
        "128": "ez128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "ez19.png",
        "default_popup": "ezup.html",
        "default_title": "Move up through the levels of this site"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.4.min.js",
                "jquery.hotkeys-0.7.9.min.js",
                "ezOverlay.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}