Confetti Snippets
Copy button for Stack Overflow
Vad är Confetti Snippets?
Confetti Snippets är en Chrome-tillägg utvecklad av https://notmydayjob.fyi, och dess huvudfunktion är "Copy button for Stack Overflow".
Tilläggsskärmbilder
Ladda ner Confetti Snippets-förlängningens CRX-fil
Ladda ner Confetti Snippets-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | fgihbddokdanababhboifajoeipopdih |
| Officiell webbadress | https://chromewebstore.google.com/detail/confetti-snippets/fgihbddokdanababhboifajoeipopdih |
| Beskrivning | Copy button for Stack Overflow |
| Filstorlek | 486 KB |
| Antal Installationer | 227 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2022-05-12 |
| Publiceringsdatum | 2022-05-12 |
| Utvecklare | https://notmydayjob.fyi |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://copy.notmydayjob.fyi |
| Hjälpsida URL | https://copy.notmydayjob.fyi |
| URL till Sekretesspolicy Sidan | https://copy.notmydayjob.fyi/privacy.html |
| Stödda Språk | 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"
]
}
]
} | |