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 là gì?

CoFoCo - Code Format and Copy là một tiện ích mở rộng Chrome được phát triển bởi tianhe.yang, và tính năng chính của nó là "Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CoFoCo - Code Format and Copy

Tải xuống các tệp mở rộng CoFoCo - Code Format and Copy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CoFoCo - Code Format and Copy CoFoCo - Code Format and Copy
ID lmfhiimgedfddgbghclbdmbpghojikop
URL Chính Thức https://chromewebstore.google.com/detail/cofoco-code-format-and-co/lmfhiimgedfddgbghclbdmbpghojikop
Mô tả Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.
Kích Thước Tệp 278 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2022-08-09
Ngày Phát Hành 2022-08-09
Nhà Phát Triển tianhe.yang
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}