Npm to GitHub

Redirect npm to github

Cos'è Npm to GitHub?

Npm to GitHub è un'estensione di Chrome sviluppata da https://marcofugaro.it, e la sua funzione principale è "Redirect npm to github".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Npm to GitHub

Scarica i file di estensione Npm to GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Npm to GitHub Npm to GitHub
ID mmcoakfbchcckehhnpngpbmkjbpbmlng
URL Ufficiale https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng
Descrizione Redirect npm to github
Dimensione del File 102 KB
Conteggio Installazioni 12
Versione Corrente 1.0.3
Ultimo Aggiornamento 2019-04-20
Data di Pubblicazione 2019-04-20
Sviluppatore https://marcofugaro.it
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/marcofugaro/npm-to-github
Lingue Supportate 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'"
}