nosey

Extension to browse libraries/plugins on github while surfing through source code

什么是nosey?

nosey是由sebastianvera开发的Chrome扩展程序,该扩展的主要功能是“Extension to browse libraries/plugins on github while surfing through source code”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载nosey扩展crx文件

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

扩展使用说明

                        Nosey it's a chrome extension that enables you to easily browse libraries/plugins when surfing through github repositories source code. It works by taking you to the library's documentation or repository page just clicking on it. 

If you are constantly googling for libraries when browsing repository's code, this extension is for you. I know, you can just type it on the url bar ... but I'm lazy.

It currently works with javascript, typescript, go and .vim files. If the surfed file does not have a known supported extension, nosey won't add the annotations, so clicking a library will do nothing, but you can manually select the language parser by clicking nosey extension icon next to chrome's url bar.                    

扩展基本信息

名称 nosey nosey
ID aahegjigldllknbphcibmhcjehnfjoga
官方URL https://chromewebstore.google.com/detail/nosey/aahegjigldllknbphcibmhcjehnfjoga
简介 Extension to browse libraries/plugins on github while surfing through source code
文件大小 26.13 KB
安装次数 13
当前版本 1.1.0
更新时间 2017-07-12
上架时间 2017-07-11
评分 5.00/5 共1次评分
开发者 sebastianvera
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sebastianvera/nosey
帮助页面URL https://github.com/sebastianvera/nosey
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "nosey",
    "description": "Extension to browse libraries\/plugins on github while surfing through source code",
    "version": "1.1.0",
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persitent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*"
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/logo16.png",
        "48": ".\/logo48.png",
        "128": ".\/logo128.png"
    },
    "page_action": {
        "default_icon": {
            "16": ".\/logo16.png",
            "24": ".\/logo24.png",
            "32": ".\/logo32.png"
        },
        "default_popup": ".\/popup.html"
    },
    "permissions": [
        "tabs"
    ]
}