Stack Overflow Copy Code
Copy code snippets from Stack Overflow.
Wat is Stack Overflow Copy Code?
Stack Overflow Copy Code is een Chrome-extensie ontwikkeld door adam.gonen, en de belangrijkste functie is "Copy code snippets from Stack Overflow.".
Extensie Screenshots
Download het CRX-bestand van de extensie Stack Overflow Copy Code
Download Stack Overflow Copy Code-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
Adds a copy button to the code snippets from Stack Overflow.
Makes it easy to use a code snippet you find on Stack Overflow by allowing you to copy the code with one click. Basisinformatie over de Extensie
| Naam | |
| ID | aeogcccfipojajmfapdojkjcmoghfdae |
| Officiële URL | https://chromewebstore.google.com/detail/stack-overflow-copy-code/aeogcccfipojajmfapdojkjcmoghfdae |
| Beschrijving | Copy code snippets from Stack Overflow. |
| Bestandsgrootte | 8.62 KB |
| Aantal Installaties | 479 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2019-05-31 |
| Publicatiedatum | 2019-05-30 |
| Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
| Ontwikkelaar | adam.gonen |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Stack Overflow Copy Code",
"version": "0.0.1",
"manifest_version": 2,
"description": "Copy code snippets from Stack Overflow.",
"permissions": [
"http:\/\/stackoverflow.com\/*",
"https:\/\/stackoverflow.com\/*"
],
"icons": {
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/stackoverflow.com\/*",
"https:\/\/stackoverflow.com\/*"
],
"js": [
"stackcopy.js"
],
"run_at": "document_idle",
"all_frames": false
}
]
} | |