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ファイルをダウンロード

SnipEasy - Share code snippets拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        ]
    }
}