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文件

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

扩展使用说明

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