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”。
擴展截圖
下載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) 擴展基本資訊
| 名稱 | |
| ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
| 官方網址 | 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"
]
}
} | |