SnipEasy - Share code snippets

Powerful tool for sharing and searching code snippets among developers

SnipEasy - Share code snippets란 무엇입니까?

SnipEasy - Share code snippets은(는) Gregory Chris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Powerful tool for sharing and searching code snippets among developers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

SnipEasy - Share code snippets 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tool for sharing and searching for code snippets on SnipEasy.com. 

Extension features:
  - search snippets
  - submit new snippets directly from the extension popup (without opening the site)
  - Submit selected text as a new snippet (opens popup to snipeasy.com)                    

확장 프로그램 기본 정보

이름 SnipEasy - Share code snippets SnipEasy - Share code snippets
ID kdkiapkeknagpldiaopmnnebpdkhpeda
공식 URL https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda
설명 Powerful tool for sharing and searching code snippets among developers
파일 크기 65.76 KB
설치 횟수 71
현재 버전 1.2.0
최근 업데이트 2014-03-12
출시 날짜 2014-03-11
개발자 Gregory Chris
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://snipeasy.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SnipEasy - Share code snippets",
    "description": "Powerful tool for sharing and searching code snippets among developers",
    "version": "1.2.0",
    "permissions": [
        "cookies",
        "tabs",
        "http:\/\/*.snipeasy.com\/",
        "contextMenus"
    ],
    "icons": {
        "16": "img\/snipeasy16.png",
        "48": "img\/snipeasy48.png",
        "128": "img\/snipeasy128.png"
    },
    "browser_action": {
        "default_title": "SnipEasy - Share code snippets",
        "default_icon": "img\/snipeasy16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}