''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是由Water開發的Chrome擴展程式,該擴展的主要功能是“The extension replaces ''npm i'' with ''yarn add'', on the npmjs website”。

擴展截圖

screenshot

下載''Yarn'' on the Node Package Manager擴展crx文件

下載''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 ''Yarn'' on the Node Package Manager
ID ckbdocnibplmjbbhfkocgjmcnellplpo
官方網址 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"
}