SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
SnipEasy - Share code snippetsคืออะไร?
SnipEasy - Share code snippets เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gregory Chris และคุณลักษณะหลักของมันคือ "Powerful tool for sharing and searching code snippets among developers"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SnipEasy - Share code snippets
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| 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"
]
}
} | |