Npm to GitHub

Redirect npm to github

Npm to GitHub là gì?

Npm to GitHub là một tiện ích mở rộng Chrome được phát triển bởi https://marcofugaro.it, và tính năng chính của nó là "Redirect npm to github".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Npm to GitHub 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

                        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                    

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

Tên Npm to GitHub Npm to GitHub
ID mmcoakfbchcckehhnpngpbmkjbpbmlng
URL Chính Thức https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng
Mô tả Redirect npm to github
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2019-04-20
Ngày Phát Hành 2019-04-20
Nhà Phát Triển https://marcofugaro.it
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/marcofugaro/npm-to-github
Ngôn Ngữ Được Hỗ Trợ 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'"
}