Code Snip

Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.

Code Snip란 무엇입니까?

Code Snip은(는) jennifer.k.tam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Copy code from stackoverflow.com, github.com, and askubuntu.com to your clipboard, expediting the time it takes you to copy and test code.


Code Snip is a productivity tool that allows you to copy source code to your clipboard with the click of a button. 

Say goodbye to the days of manually highlighting desired code and right clicking to copy and paste or using your pressing CTRL + C and CTRL + V. Code Snip will copy code for you and the best part is that it's free!

Download it today at the Chrome Store.                    

확장 프로그램 기본 정보

이름 Code Snip Code Snip
ID loeopfggphfjeegjidkjbogidpbapold
공식 URL https://chrome.google.com/webstore/detail/code-snip/loeopfggphfjeegjidkjbogidpbapold
설명 Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.
파일 크기 31.89 KB
설치 횟수 399
현재 버전 1.0
최근 업데이트 2017-08-05
출시 날짜 2017-08-05
개발자 jennifer.k.tam
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Snip",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Code Snip",
        "default_popup": "overlay.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "css": [
                "css\/stackOverflow.css"
            ],
            "js": [
                "js\/stackOverflow.js",
                "js\/contentscript.js",
                "js\/copy-to-clipboard.js"
            ],
            "matches": [
                "https:\/\/stackoverflow.com\/*"
            ]
        },
        {
            "css": [
                "css\/github.css"
            ],
            "js": [
                "js\/github.js",
                "js\/contentscript.js",
                "js\/copy-to-clipboard.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        },
        {
            "css": [
                "css\/ubuntu.css"
            ],
            "js": [
                "js\/ubuntu.js",
                "js\/contentscript.js",
                "js\/copy-to-clipboard.js"
            ],
            "matches": [
                "https:\/\/askubuntu.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'"
}