''Yarn'' on the Node Package Manager

''Yarn'' on the Node Package Manager

The extension replaces ''npm i'' with ''yarn add'', on the npmjs website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "''Yarn'' on the Node Package Manager",
  "short_name": "NTY",
  "description": "__MSG_manifest_description__",
  "version": "0.1.0",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "__MSG_manifest_title__",
    "default_icon": "icons/icon32.png"
  },
  "icons": {
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.npmjs.com/*"
      ],
      "css": [
        "css/content_style.css"
      ],
      "js": [
        "libs/jquery.min.js",
        "js/content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "manifest_version": 3,
  "default_locale": "en"
}