Npm to GitHub
Redirect npm to github
Wat is Npm to GitHub?
Npm to GitHub is een Chrome-extensie ontwikkeld door https://marcofugaro.it, en de belangrijkste functie is "Redirect npm to github".
Extensie Screenshots
Download het CRX-bestand van de extensie Npm to GitHub
Download Npm to GitHub-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Npm to GitHub |
ID | mmcoakfbchcckehhnpngpbmkjbpbmlng |
Officiële URL | https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng |
Beschrijving | Redirect npm to github |
Bestandsgrootte | 102 KB |
Aantal Installaties | 12 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2019-04-20 |
Publicatiedatum | 2019-04-20 |
Ontwikkelaar | https://marcofugaro.it |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/marcofugaro/npm-to-github |
Ondersteunde Talen | 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'" } |