SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Qu'est-ce que SnipEasy - Share code snippets ?
SnipEasy - Share code snippets est une extension Chrome développée par Gregory Chris, et sa fonction principale est "Powerful tool for sharing and searching code snippets among developers".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SnipEasy - Share code snippets
Téléchargez les fichiers d'extension SnipEasy - Share code snippets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
URL Officiel | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Description | Powerful tool for sharing and searching code snippets among developers |
Taille du Fichier | 65.76 KB |
Nombre d'Installations | 71 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2014-03-12 |
Date de Publication | 2014-03-11 |
Développeur | Gregory Chris |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://snipeasy.com |
Langues Prises en Charge | 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" ] } } |