Code++

Code++ enriches code that you find online to enable better search and reuse by offering more context and metadata.

Τι είναι το Code++;

Το Code++ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://codeplusplus.app, και η κύρια λειτουργία του είναι "Code++ enriches code that you find online to enable better search and reuse by offering more context and metadata.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Code++

Λήψη αρχείων επέκτασης Code++ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Code++ enriches code that you find online to enable better search and reuse by offering more context and metadata. When you copy with Code++, it adds a ton of context about the code and where it came from to your clipboard!

Users can even customize which information is added. In the settings menu you can toggle which of the following information is added: Title, Description, Tags, Links, People, Sensitive Information (i.e. API keys, secrets).

Getting Started:
1. Install the Code++ Extension
2. [Optional] Pin the extension in your Chrome toolbar
3. Select code you find on stackoverflow.com or your favorite coding site, then either Right-Click and select "Copy with Code++ Context"  or use the keyboard shortcut "ALT + SHIFT + C" (Windows/Linux) or "OPTION + SHIFT + C" (MacOS)
4. Paste your code in Slack, in your IDE, in your favorite snippet application, send it to your friends or your grandma who doesn't understand what code is but is happy to brag about how good you are with computers

Made with ❤️ by the Pieces team                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Code++ Code++
ID ckaghhejfphgknmnielpkfeaobhnaogk
Επίσημο URL https://chromewebstore.google.com/detail/code++/ckaghhejfphgknmnielpkfeaobhnaogk
Περιγραφή Code++ enriches code that you find online to enable better search and reuse by offering more context and metadata.
Μέγεθος Αρχείου 1.44 MB
Αριθμός Εγκαταστάσεων 79
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2022-09-15
Ημερομηνία Δημοσίευσης 2022-09-05
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://codeplusplus.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://codeplusplus.app/chrome
Διεύθυνση URL της Σελίδας Βοήθειας https://getpieces.typeform.com/to/EZYODAMo
URL της Σελίδας Πολιτικής Απορρήτου https://code.pieces.app/legal/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Code++",
    "short_name": "Code++",
    "version": "1.0.1",
    "description": "Code++ enriches code that you find online to enable better search and reuse by offering more context and metadata.",
    "author": "Brandon Kunkel",
    "homepage_url": "https:\/\/codeplusplus.app\/chrome",
    "options_page": "options.html",
    "icons": {
        "16": "\/images\/icons\/icon16.png",
        "128": "\/images\/icons\/icon128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Code++",
        "default_icon": {
            "16": "\/images\/icons\/icon16.png",
            "24": "\/images\/icons\/icon32.png",
            "32": "\/images\/icons\/icon32.png",
            "48": "\/images\/icons\/icon48.png",
            "96": "\/images\/icons\/icon96.png",
            "128": "\/images\/icons\/icon128.png"
        }
    },
    "commands": {
        "codeplusplus_copy_shortcut": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "Alt+Shift+C"
            },
            "description": "Copy text to clipboard with Code++ Context"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self'"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        "https:\/\/*.runtime.dev\/*"
    ]
}