Confetti Snippets
Copy button for Stack Overflow
What is Confetti Snippets?
Confetti Snippets is a Chrome extension developed by https://notmydayjob.fyi, and its main feature is "Copy button for Stack Overflow".
Extension Screenshots
Download Confetti Snippets Extension CRX File
Download Confetti Snippets extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Confetti Snippets |
ID | fgihbddokdanababhboifajoeipopdih |
Official URL | https://chromewebstore.google.com/detail/confetti-snippets/fgihbddokdanababhboifajoeipopdih |
Description | Copy button for Stack Overflow |
File Size | 486 KB |
Installation Count | 227 |
Current Version | 1.0.0 |
Last Updated | 2022-05-12 |
Publish Date | 2022-05-12 |
Developer | https://notmydayjob.fyi |
[email protected] | |
Payment Type | free |
Extension Website | https://copy.notmydayjob.fyi |
Help Page URL | https://copy.notmydayjob.fyi |
Privacy Policy Page URL | https://copy.notmydayjob.fyi/privacy.html |
Supported Languages | 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" ] } ] } |