Copy-Code

Creates a copy to clipboard button on every code text.

Copy-Code란 무엇입니까?

Copy-Code은(는) João da Torre Pereira에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Creates a copy to clipboard button on every code text."입니다.

확장 프로그램 스크린샷

screenshot

Copy-Code 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Appends a button to all code snippets to instantly copy the code to clipboard. Extension available for stackoverflow.com, moodle.up.pt and much more.

This project is open source and you also can contribute with ideas                    

확장 프로그램 기본 정보

이름 Copy-Code Copy-Code
ID heokjaibaafegafgaaodfgjjgjffnenk
공식 URL https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk
설명 Creates a copy to clipboard button on every code text.
파일 크기 569 KB
설치 횟수 226
현재 버전 1.3
최근 업데이트 2023-08-05
출시 날짜 2022-06-01
평점 5.00/5 총 1 개의 평점
개발자 João da Torre Pereira
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/thePeras/copy-code-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy-Code",
    "version": "1.3",
    "description": "Creates a copy to clipboard button on every code text.",
    "icons": {
        "48": "icons\/copy-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackoverflow.com\/*",
                "https:\/\/stackoverflowteams.com\/*",
                "https:\/\/*.stackexchange.com\/*",
                "https:\/\/serverfault.com\/*",
                "https:\/\/superuser.com\/*",
                "https:\/\/askubuntu.com\/*",
                "https:\/\/moodle.up.pt\/*",
                "https:\/\/www.w3resource.com\/*",
                "https:\/\/w3resource.com\/*",
                "https:\/\/villate.org\/*",
                "https:\/\/*.medium.com\/*",
                "https:\/\/www.npmjs.com\/*",
                "https:\/\/forums.raspberrypi.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}