MDNJump

Quickest way to look something up on MDN ( Mozilla Developer Network ).

MDNJump란 무엇입니까?

MDNJump은(는) Cory Gross에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickest way to look something up on MDN ( Mozilla Developer Network )."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        MDNJump is a simple extension for Google Chrome which adds a context menu for text selections allowing quick reference lookups on the fly. MDNJump also adds an Omnibox keyword which you can use in Chrome's address bar. MDN is generally my favorite reference for front-end development. I created this extension so I could more quickly search it's documentation.

Usage
------
To use MDNJump, select some text on a page you're reading such as `window.location` and right click. The MDNJump context menu entry will be present. Click the menu button and instead of being brought to a search results page, you will jump directly to the top MDN page for your selected text query.

You may also use MDNJump through Chrome's Omnibox (the address bar). Simply type "mdn-" and hit TAB or SPACE to activate MDNJump. You may then enter a query and jump directly to the top MDN page for that given query.

http://github.com/CoryG89/MDNJump                    

확장 프로그램 기본 정보

이름 MDNJump MDNJump
ID mfjekjhknpjgpgchoghlemhgchpmkiha
공식 URL https://chromewebstore.google.com/detail/mdnjump/mfjekjhknpjgpgchoghlemhgchpmkiha
설명 Quickest way to look something up on MDN ( Mozilla Developer Network ).
파일 크기 9.57 KB
설치 횟수 19
현재 버전 0.1.3
최근 업데이트 2013-08-14
출시 날짜 2013-08-13
개발자 Cory Gross
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/CoryG89/MDNJump
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MDNJump",
    "version": "0.1.3",
    "description": "Quickest way to look something up on MDN ( Mozilla Developer Network ).",
    "icons": {
        "16": "ico\/16.png",
        "48": "ico\/48.png",
        "128": "ico\/128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "omnibox": {
        "keyword": "mdn-"
    },
    "background": {
        "scripts": [
            "index.js"
        ],
        "persistent": false
    }
}