SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Hvad er SnipEasy - Share code snippets?
SnipEasy - Share code snippets er en Chrome-udvidelse udviklet af Gregory Chris, og dens hovedfunktion er "Powerful tool for sharing and searching code snippets among developers".
Udvidelsesskærmbilleder
Download SnipEasy - Share code snippets-udvidelses-CRX-fil
Download SnipEasy - Share code snippets-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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) Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
| Officiel URL | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
| Beskrivelse | Powerful tool for sharing and searching code snippets among developers |
| Filstørrelse | 65.76 KB |
| Antal Installationer | 71 |
| Nuværende Version | 1.2.0 |
| Senest Opdateret | 2014-03-12 |
| Udgivelsesdato | 2014-03-11 |
| Udvikler | Gregory Chris |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://snipeasy.com |
| Understøttede Sprog | 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"
]
}
} | |