ezUP

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

ezUP क्या है?

ezUP ezanker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate UP through the levels of the current site via button or keyboard (ctrl+alt+u)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ezUP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}