jump

Remember sites using words, not long URLs.

jump란 무엇입니까?

jump은(는) Big Top Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remember sites using words, not long URLs."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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 jump
ID nnmoidfdhdncdeeficmimjfcdbhaaffi
공식 URL 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"
    ]
}