Npm to GitHub

Redirect npm to github

Npm to GitHub क्या है?

Npm to GitHub https://marcofugaro.it द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirect npm to github"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Npm to GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}