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 파일 다운로드

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

확장 프로그램 사용 설명서

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