CoFoCo - Code Format and Copy

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

Qu'est-ce que CoFoCo - Code Format and Copy ?

CoFoCo - Code Format and Copy est une extension Chrome développée par tianhe.yang, et sa fonction principale est "Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension CoFoCo - Code Format and Copy

Téléchargez les fichiers d'extension CoFoCo - Code Format and Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CoFoCo - Code Format and Copy CoFoCo - Code Format and Copy
ID lmfhiimgedfddgbghclbdmbpghojikop
URL Officiel https://chromewebstore.google.com/detail/cofoco-code-format-and-co/lmfhiimgedfddgbghclbdmbpghojikop
Description Code-Format-Copy - automatically format code snippets from across the web. Spend more time coding, and less time formatting.
Taille du Fichier 278 KB
Nombre d'Installations 29
Version Actuelle 0.1.0
Dernière Mise à Jour 2022-08-09
Date de Publication 2022-08-09
Développeur tianhe.yang
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}