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
Eメール [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"
    ]
}