Npm to GitHub

Redirect npm to github

Npm to GitHub란 무엇입니까?

Npm to GitHub은(는) https://marcofugaro.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect npm to github"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Npm to GitHub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        We js developers all do it, search for a package, npm results come up first, we click on them, go on npmjs.com and immediately click on the github link.

This extension replaces all the npm links in the search result with github links, so you don't have to do this process ever again.

It also optionally redirects all `https://www.npmjs.com/package/` urls to github.

Source: https://github.com/marcofugaro/npm-to-github                    

확장 프로그램 기본 정보

이름 Npm to GitHub Npm to GitHub
ID mmcoakfbchcckehhnpngpbmkjbpbmlng
공식 URL https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng
설명 Redirect npm to github
파일 크기 102 KB
설치 횟수 12
현재 버전 1.0.3
최근 업데이트 2019-04-20
출시 날짜 2019-04-20
개발자 https://marcofugaro.it
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/marcofugaro/npm-to-github
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Npm to GitHub",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Redirect npm to github",
    "author": "@marco_fugaro",
    "homepage_url": "https:\/\/github.com\/marcofugaro\/npm-to-github",
    "icons": {
        "128": "images\/icon.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "https:\/\/www.google.*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/registry.npmjs.org\/*",
        "https:\/\/www.npmjs.com\/package\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}