SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Cos'è SnipEasy - Share code snippets?
SnipEasy - Share code snippets è un'estensione di Chrome sviluppata da Gregory Chris, e la sua funzione principale è "Powerful tool for sharing and searching code snippets among developers".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SnipEasy - Share code snippets
Scarica i file di estensione SnipEasy - Share code snippets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
URL Ufficiale | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Descrizione | Powerful tool for sharing and searching code snippets among developers |
Dimensione del File | 65.76 KB |
Conteggio Installazioni | 71 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2014-03-12 |
Data di Pubblicazione | 2014-03-11 |
Sviluppatore | Gregory Chris |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://snipeasy.com |
Lingue Supportate | 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" ] } } |