CoFoCo - Code Format and Copy

Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.

什么是CoFoCo - Code Format and Copy?

CoFoCo - Code Format and Copy是由tianhe.yang开发的Chrome扩展程序,该扩展的主要功能是“Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.”。

扩展截图

screenshot
screenshot

下载CoFoCo - Code Format and Copy扩展crx文件

下载CoFoCo - Code Format and Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Copying code snippets, Stack Overflow suggestions, and minified files - it's something we as developers do countless times every day.

CoFoCo helps you copy-pasta with grace 🍝 , using your Prettier config to format JS, JSX, and TSX code to your liking before it hits your clipboard.

Support for more languages to come; let me know in the comments below what y'all would like to see!

CoFoCo doesn't track you or send your data anywhere. All configs are stored locally within your browser instance.                    

扩展基本信息

名称 CoFoCo - Code Format and Copy CoFoCo - Code Format and Copy
ID lmfhiimgedfddgbghclbdmbpghojikop
官方URL https://chromewebstore.google.com/detail/cofoco-code-format-and-co/lmfhiimgedfddgbghclbdmbpghojikop
简介 Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.
文件大小 278 KB
安装次数 29
当前版本 0.1.0
更新时间 2022-08-09
上架时间 2022-08-09
开发者 tianhe.yang
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CoFoCo - Code Format and Copy",
    "description": "Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.",
    "version": "0.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "scripting",
        "contextMenus",
        "clipboardWrite",
        "activeTab"
    ],
    "action": {
        "default_title": "Configure CoFoCo",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16x.png",
            "32": "\/icons\/32x.png",
            "48": "\/icons\/48x.png",
            "128": "\/icons\/128x.png"
        }
    },
    "icons": {
        "16": "\/icons\/16x.png",
        "32": "\/icons\/32x.png",
        "48": "\/icons\/48x.png",
        "128": "\/icons\/128x.png"
    }
}