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文件

下载Where is it?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/"
    ]
}