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
Eメール [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"
    }
}