SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Vad är SnipEasy - Share code snippets?
SnipEasy - Share code snippets är en Chrome-tillägg utvecklad av Gregory Chris, och dess huvudfunktion är "Powerful tool for sharing and searching code snippets among developers".
Tilläggsskärmbilder
Ladda ner SnipEasy - Share code snippets-förlängningens CRX-fil
Ladda ner SnipEasy - Share code snippets-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
Officiell webbadress | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Beskrivning | Powerful tool for sharing and searching code snippets among developers |
Filstorlek | 65.76 KB |
Antal Installationer | 71 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2014-03-12 |
Publiceringsdatum | 2014-03-11 |
Utvecklare | Gregory Chris |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://snipeasy.com |
Stödda Språk | 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" ] } } |