jump
Remember sites using words, not long URLs.
什麼是jump?
jump是由Big Top Labs開發的Chrome擴展程式,該擴展的主要功能是“Remember sites using words, not long URLs.”。
擴展截圖
下載jump擴展crx文件
下載jump擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Jump is a Chrome extension made purely for myself because I missed having a link shortener around. Rather than roll a remote shortener, I decided to write a little extension which uses Chrome sync to store a bunch of key: url pairs. Hit the arrow button to add a new link, or go to the page listing all links. Use ju as your omnibox shortcut to glory. Yes, for frequently visited sites this isn't much of an improvement over just typing the first few letters of the site into the omnibox. Where I find this kind of shortcut really handy, though, is for URLs like "New Google Drive document" (or a specific doc), or deep-linking into analytics systems, dashboards, etc -- sites where there are a bunch of potential autocompletes and you can't really tell the difference at a glance.
擴展基本資訊
名稱 | jump |
ID | nnmoidfdhdncdeeficmimjfcdbhaaffi |
官方網址 | https://chromewebstore.google.com/detail/jump/nnmoidfdhdncdeeficmimjfcdbhaaffi |
簡介 | Remember sites using words, not long URLs. |
檔案大小 | 297 KB |
安裝次數 | 24 |
目前版本 | 1.0 |
更新時間 | 2014-01-02 |
上架時間 | 2014-01-02 |
評分 | 4.83/5 共 6 次評分 |
開發者 | Big Top Labs |
付費類型 | free |
擴展官網 | https://github.com/jennielees/jump |
說明頁面URL | https://github.com/jennielees/jump |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "jump", "description": "Remember sites using words, not long URLs.", "version": "1.0", "omnibox": { "keyword": "ju" }, "icons": { "16": "icon1_16.png", "64": "icon1_64.png" }, "background": { "scripts": [ "utils.js", "background.js" ] }, "browser_action": { "default_icon": "icon1_64.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/fonts.googleapis.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "sha1.js", "utils.js", "js\/jquery.js", "popup.js", "list.js" ] } ], "permissions": [ "storage", "tabs" ] } |