Snip-It

Copy a simple text snippet about the active tab to the clipboard

Snip-It란 무엇입니까?

Snip-It은(는) crowe.mitch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy a simple text snippet about the active tab to the clipboard"입니다.

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

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

확장 프로그램 사용 설명서

                        Save webpages to your clipboard for easy pasting into a markdown document.                    

확장 프로그램 기본 정보

이름 Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
공식 URL https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
설명 Copy a simple text snippet about the active tab to the clipboard
파일 크기 33.33 KB
설치 횟수 481
현재 버전 2.0
최근 업데이트 2017-01-04
출시 날짜 2017-01-04
개발자 crowe.mitch
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snip-It",
    "description": "Copy a simple text snippet about the active tab to the clipboard",
    "version": "2.0",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "tab-snippet": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Copy a snippet of the current tab"
        }
    },
    "browser_action": {
        "default_title": "Copy a snippet to the clipboard",
        "default_icon": "icon.png"
    },
    "manifest_version": 2
}