Npm to GitHub
Redirect npm to github
什麼是Npm to GitHub?
Npm to GitHub是由https://marcofugaro.it開發的Chrome擴展程式,該擴展的主要功能是“Redirect npm to github”。
擴展截圖
下載Npm to GitHub擴展crx文件
下載Npm to GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Npm to GitHub |
ID | mmcoakfbchcckehhnpngpbmkjbpbmlng |
官方網址 | https://chromewebstore.google.com/detail/npm-to-github/mmcoakfbchcckehhnpngpbmkjbpbmlng |
簡介 | Redirect npm to github |
檔案大小 | 102 KB |
安裝次數 | 12 |
目前版本 | 1.0.3 |
更新時間 | 2019-04-20 |
上架時間 | 2019-04-20 |
開發者 | https://marcofugaro.it |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/marcofugaro/npm-to-github |
支援的語言 | 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'" } |