SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
What is SnipEasy - Share code snippets?
SnipEasy - Share code snippets is a Chrome extension developed by Gregory Chris, and its main feature is "Powerful tool for sharing and searching code snippets among developers".
Extension Screenshots
Download SnipEasy - Share code snippets Extension CRX File
Download SnipEasy - Share code snippets extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
Official URL | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Description | Powerful tool for sharing and searching code snippets among developers |
File Size | 65.76 KB |
Installation Count | 71 |
Current Version | 1.2.0 |
Last Updated | 2014-03-12 |
Publish Date | 2014-03-11 |
Developer | Gregory Chris |
[email protected] | |
Payment Type | free |
Extension Website | http://snipeasy.com |
Supported Languages | 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" ] } } |