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
电子邮箱 [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"
        ]
    }
}