Npm to GitHub
Redirect npm to github
What is Npm to GitHub?
Npm to GitHub is a Chrome extension developed by https://marcofugaro.it, and its main feature is "Redirect npm to github".
Extension Screenshots
Download Npm to GitHub Extension CRX File
Download Npm to GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Npm to GitHub |
ID | mmcoakfbchcckehhnpngpbmkjbpbmlng |
Official URL | https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng |
Description | Redirect npm to github |
File Size | 102 KB |
Installation Count | 12 |
Current Version | 1.0.3 |
Last Updated | 2019-04-20 |
Publish Date | 2019-04-20 |
Developer | https://marcofugaro.it |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/marcofugaro/npm-to-github |
Supported Languages | 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'" } |