ezUP

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

ezUP란 무엇입니까?

ezUP은(는) ezanker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u)."입니다.

확장 프로그램 스크린샷

screenshot

ezUP 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 ezUP ezUP
ID hnomiiicdikiogeolpgmpdmcilkgjdco
공식 URL https://chromewebstore.google.com/detail/ezup/hnomiiicdikiogeolpgmpdmcilkgjdco
설명 Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u).
파일 크기 51.44 KB
설치 횟수 207
현재 버전 1.5
최근 업데이트 2012-07-10
출시 날짜 2012-07-10
평점 4.75/5 총 4 개의 평점
개발자 ezanker
결제 유형 free
확장 프로그램 웹 사이트 http://www.simpledifference.com/ezanker/ezup.aspx
지원되는 언어 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
        }
    ]
}