Confetti Snippets

Copy button for Stack Overflow

Wat is Confetti Snippets?

Confetti Snippets is een Chrome-extensie ontwikkeld door https://notmydayjob.fyi, en de belangrijkste functie is "Copy button for Stack Overflow".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Confetti Snippets

Download Confetti Snippets-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Add a copy button to Stack Overflow!

Now you can easily copy and paste code blocks from Stack Overflow to your clipboard or editor with a single click.

Find past code snippets in your Dashboard for easy access. No need to re-visit that same Stack Overflow page on how to center a div.                    

Basisinformatie over de Extensie

Naam Confetti Snippets Confetti Snippets
ID fgihbddokdanababhboifajoeipopdih
Officiële URL https://chromewebstore.google.com/detail/confetti-snippets/fgihbddokdanababhboifajoeipopdih
Beschrijving Copy button for Stack Overflow
Bestandsgrootte 486 KB
Aantal Installaties 227
Huidige Versie 1.0.0
Laatst Bijgewerkt 2022-05-12
Publicatiedatum 2022-05-12
Ontwikkelaar https://notmydayjob.fyi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://copy.notmydayjob.fyi
Help Pagina-URL https://copy.notmydayjob.fyi
URL van de Privacybeleid Pagina https://copy.notmydayjob.fyi/privacy.html
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Confetti Snippets",
    "version": "1.0.0",
    "description": "Copy button for Stack Overflow",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Confetti Snippets",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.stackoverflow.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}