Npm to GitHub
Redirect npm to github
Qu'est-ce que Npm to GitHub ?
Npm to GitHub est une extension Chrome développée par https://marcofugaro.it, et sa fonction principale est "Redirect npm to github".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Npm to GitHub
Téléchargez les fichiers d'extension Npm to GitHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Npm to GitHub |
ID | mmcoakfbchcckehhnpngpbmkjbpbmlng |
URL Officiel | https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng |
Description | Redirect npm to github |
Taille du Fichier | 102 KB |
Nombre d'Installations | 12 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2019-04-20 |
Date de Publication | 2019-04-20 |
Développeur | https://marcofugaro.it |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/marcofugaro/npm-to-github |
Langues Prises en Charge | 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'" } |