Stack Copy Button
A copy button for Stack Overflow code boxes
Co to jest Stack Copy Button?
Stack Copy Button to rozszerzenie Chrome opracowane przez MrMino, a jego główną funkcją jest „A copy button for Stack Overflow code boxes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Stack Copy Button
Pobierz pliki rozszerzeń Stack Copy Button w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Faster code copying from Stack Overflow website! This extension adds a copy button to every code box in stack overflow. Also works with custom layout styles (eg. Stylish). Hover your mouse over the code, click copy, and save time. No text selecting or scrolling required. https://github.com/MrMino/StackCtrlC Made by MrMino I (this extension's author) am not affiliated with Stack Overflow, Stack Exchange, or any other site from Stack Exchange Network.
Podstawowe informacje o rozszerzeniu
Nazwa | Stack Copy Button |
ID | dkejincbnheemdddmbiggcnlidffpedf |
Oficjalny URL | https://chromewebstore.google.com/detail/stack-copy-button/dkejincbnheemdddmbiggcnlidffpedf |
Opis | A copy button for Stack Overflow code boxes |
Rozmiar pliku | 40.45 KB |
Liczba instalacji | 336 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2016-04-14 |
Data Publikacji | 2016-04-14 |
Ocena | 5.00/5 Łącznie 10 Oceny |
Deweloper | MrMino |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/MrMino/StackOverflowCtrlC |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stack Copy Button", "author": "MrMino", "description": "A copy button for Stack Overflow code boxes", "version": "1.1.1", "browser_action": { "default_icon": "icon32.png" }, "icons": { "32": "icon32.png", "128": "icon128.png" }, "permissions": [ "*:\/\/stackoverflow.com\/*", "clipboardWrite" ], "content_scripts": [ { "matches": [ "*:\/\/*.stackoverflow.com\/*" ], "js": [ "jquery-1.12.3.min.js", "copybox.min.js" ] } ] } |