ClipboardOverflow

Copy code snippets from Stack Overflow by clicking on a button.

ClipboardOverflow란 무엇입니까?

ClipboardOverflow은(는) perronemgianluca에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy code snippets from Stack Overflow by clicking on a button."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ClipboardOverflow 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Get the code snippets from Stack Overflow questions on your clipboard by clicking on a button. No more side scrolling, no more losing your selection with the mouse. A developer's time  is his(her) money, save it now.
- Features a unobtrusive UI. 
- The extension also gives you the option of having an automatic way of crediting the source by commenting the question URL before the actual code snippet that gets copied. 
- It supports most major programming languages for the comment syntax ( 22 of them ).                    

확장 프로그램 기본 정보

이름 ClipboardOverflow ClipboardOverflow
ID niidcejebmapmgohjfhajoiaiodalmck
공식 URL https://chromewebstore.google.com/detail/clipboardoverflow/niidcejebmapmgohjfhajoiaiodalmck
설명 Copy code snippets from Stack Overflow by clicking on a button.
파일 크기 11.7 KB
설치 횟수 78
현재 버전 0.0.0.1
최근 업데이트 2021-02-10
출시 날짜 2020-05-02
개발자 perronemgianluca
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Caloma11/clipboard-overflow
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ClipboardOverflow",
    "version": "0.0.0.1",
    "description": "Copy code snippets from Stack Overflow by clicking on a button.",
    "homepage_url": "https:\/\/github.com\/Caloma11\/clipboard-overflow",
    "default_locale": "en",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackoverflow.com\/questions\/*"
            ],
            "js": [
                "js\/script.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/clipboard_icon16.png",
            "32": "images\/clipboard_icon32.png",
            "48": "images\/clipboard_icon48.png",
            "128": "images\/clipboard_icon128.png"
        }
    },
    "icons": {
        "16": "images\/clipboard_icon16.png",
        "32": "images\/clipboard_icon32.png",
        "48": "images\/clipboard_icon48.png",
        "128": "images\/clipboard_icon128.png"
    }
}