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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CoFoCo - Code Format and Copy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}