SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Wat is SnipEasy - Share code snippets?
SnipEasy - Share code snippets is een Chrome-extensie ontwikkeld door Gregory Chris, en de belangrijkste functie is "Powerful tool for sharing and searching code snippets among developers".
Extensie Screenshots
Download het CRX-bestand van de extensie SnipEasy - Share code snippets
Download SnipEasy - Share code snippets-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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) Basisinformatie over de Extensie
| Naam | |
| ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
| Officiële URL | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
| Beschrijving | Powerful tool for sharing and searching code snippets among developers |
| Bestandsgrootte | 65.76 KB |
| Aantal Installaties | 71 |
| Huidige Versie | 1.2.0 |
| Laatst Bijgewerkt | 2014-03-12 |
| Publicatiedatum | 2014-03-11 |
| Ontwikkelaar | Gregory Chris |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://snipeasy.com |
| Ondersteunde Talen | 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"
]
}
} | |