nosey

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

nosey là gì?

nosey là một tiện ích mở rộng Chrome được phát triển bởi sebastianvera, và tính năng chính của nó là "Extension to browse libraries/plugins on github while surfing through source code".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng nosey

Tải xuống các tệp mở rộng nosey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên nosey nosey
ID aahegjigldllknbphcibmhcjehnfjoga
URL Chính Thức https://chromewebstore.google.com/detail/nosey/aahegjigldllknbphcibmhcjehnfjoga
Mô tả Extension to browse libraries/plugins on github while surfing through source code
Kích Thước Tệp 26.13 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2017-07-12
Ngày Phát Hành 2017-07-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sebastianvera
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sebastianvera/nosey
URL Trang Trợ Giúp https://github.com/sebastianvera/nosey
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}