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).”。
擴展截圖
下載ezUP擴展crx文件
下載ezUP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | hnomiiicdikiogeolpgmpdmcilkgjdco |
官方網址 | 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 } ] } |