Npm to GitHub

Redirect npm to github

Was ist Npm to GitHub?

Npm to GitHub ist eine Chrome-Erweiterung, die von https://marcofugaro.it entwickelt wurde, und ihr Hauptmerkmal ist "Redirect npm to github".

Erweiterungsscreenshots

screenshot
screenshot

Npm to GitHub-Erweiterungs-CRX-Datei herunterladen

Laden Sie Npm to GitHub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Npm to GitHub Npm to GitHub
ID mmcoakfbchcckehhnpngpbmkjbpbmlng
Offizielle URL https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng
Beschreibung Redirect npm to github
Dateigröße 102 KB
Installationsanzahl 12
Aktuelle Version 1.0.3
Letztes Update 2019-04-20
Veröffentlichungsdatum 2019-04-20
Entwickler https://marcofugaro.it
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/marcofugaro/npm-to-github
Unterstützte Sprachen 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'"
}