Where is it?

Whereisit is an extension that helps you to easily find the references on repositories in an online fashion.

Where is it?란 무엇입니까?

Where is it?은(는) Where is it Team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Whereisit is an extension that helps you to easily find the references on repositories in an online fashion."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Where is it? 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        whereisit makes code navigation on GitHub easier. Look up and jump around class/method definitions with a single click.

Just highlight the name you wish to look up and click the action button in the toolbar!

For even faster results, highlight the name, right click and hit "Where is it".

Latest update: link insertions happen automatically for a repo you have visited before!

Share your feedback via this survey: http://goo.gl/forms/nmfty3eWjp
Thanks!

whereisit is the hack that won Angelhack Brooklyn 2015.

This is an open source project, check it out on GitHub https://github.com/ngzhian/whereisit/

Recent change:
Fix extension not working when navigating around GitHub
Fix permissions required for this extension (we don't read your tab or browsing history!)                    

확장 프로그램 기본 정보

이름 Where is it? Where is it?
ID cdgnplmebagbialenimejpokfcodlkdm
공식 URL https://chromewebstore.google.com/detail/where-is-it/cdgnplmebagbialenimejpokfcodlkdm
설명 Whereisit is an extension that helps you to easily find the references on repositories in an online fashion.
파일 크기 653 KB
설치 횟수 110
현재 버전 0.2.3
최근 업데이트 2015-09-15
출시 날짜 2015-09-14
평점 5.00/5 총 3 개의 평점
개발자 Where is it Team
결제 유형 free
확장 프로그램 웹 사이트 http://whereisit.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Where is it?",
    "version": "0.2.3",
    "description": "Whereisit is an extension that helps you to easily find the references on repositories in an online fashion.",
    "icons": {
        "128": "img\/logo128.png",
        "19": "img\/logo19.png",
        "16": "img\/logo16.png"
    },
    "page_action": {
        "default_icon": "img\/logo19.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery-2.1.4.min.js",
            "shared.js",
            "utils\/browser-action.js",
            "background.js",
            "context-menu.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "shared.js",
                "injected.js"
            ],
            "run_at": "document_end"
        }
    ],
    "homepage_url": "http:\/\/whereisit.io",
    "permissions": [
        "contextMenus",
        "activeTab",
        "*:\/\/github.com\/*",
        "http:\/\/localhost\/",
        "http:\/\/45.33.82.241\/"
    ]
}