Replace 'npm i' with 'yarn add' in npmjs.com,
// ==UserScript==
// @name Replace 'npm i' with 'yarn add' in npmjs.com
// @namespace https://www.npmjs.com/
// @version 0.1
// @description Replace 'npm i' with 'yarn add' in npmjs.com,
// @author You
// @match https://www.npmjs.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
let element = document.querySelector('code[title="Copy Command to Clipboard"] span');
element.innerHTML = element.innerHTML.replace('npm i','yarn add')
})();