''Yarn'' on the Node Package Manager
The extension replaces ''npm i'' with ''yarn add'', on the npmjs website
¿Qué es ''Yarn'' on the Node Package Manager?
''Yarn'' on the Node Package Manager es una extensión de Chrome desarrollada por Water, y su función principal es "The extension replaces ''npm i'' with ''yarn add'', on the npmjs website".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ''Yarn'' on the Node Package Manager
Descarga archivos de extensión ''Yarn'' on the Node Package Manager en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The extension changes the Copying Area, on the npmjs website, so by clicking on it - you will copy ''yarn add Package'' After right-clicking on the extension icon, you can: 1. Fast open npmjs site 2. Remove the extension icon 3. Top secret cookie button, but I didn't tell you that, right? The extension contains: 1. Transitions to the NpmJs site from the context menu 2. Additional styles for notifications and area (blue yarn colors) 3. Cookies in the context menu 4. Support Russian and English #yarn #npmjs Replace "npm install" with "yarn add"
Información Básica de la Extensión
Nombre | ''Yarn'' on the Node Package Manager |
ID | ckbdocnibplmjbbhfkocgjmcnellplpo |
URL Oficial | https://chromewebstore.google.com/detail/yarn-on-the-node-package/ckbdocnibplmjbbhfkocgjmcnellplpo |
Descripción | The extension replaces ''npm i'' with ''yarn add'', on the npmjs website |
Tamaño del Archivo | 40.75 KB |
Cantidad de Instalaciones | 25 |
Versión Actual | 0.1.0 |
Última Actualización | 2023-12-10 |
Fecha de Publicación | 2020-10-05 |
Desarrollador | Water |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en,ru |
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" } |