''Yarn'' on the Node Package Manager
The extension replaces ''npm i'' with ''yarn add'', on the npmjs website
''Yarn'' on the Node Package Managerคืออะไร?
''Yarn'' on the Node Package Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Water และคุณลักษณะหลักของมันคือ "The extension replaces ''npm i'' with ''yarn add'', on the npmjs website"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ''Yarn'' on the Node Package Manager
ดาวน์โหลดไฟล์ส่วนขยาย ''Yarn'' on the Node Package Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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"
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ''Yarn'' on the Node Package Manager |
ID | ckbdocnibplmjbbhfkocgjmcnellplpo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/yarn-on-the-node-package/ckbdocnibplmjbbhfkocgjmcnellplpo |
คำอธิบาย | The extension replaces ''npm i'' with ''yarn add'', on the npmjs website |
ขนาดไฟล์ | 40.75 KB |
จำนวนการติดตั้ง | 25 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2023-12-10 |
วันที่เผยแพร่ | 2020-10-05 |
ผู้พัฒนา | Water |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } |