SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Apa itu SnipEasy - Share code snippets?
SnipEasy - Share code snippets adalah ekstensi Chrome yang dikembangkan oleh Gregory Chris, dan fitur utamanya adalah "Powerful tool for sharing and searching code snippets among developers".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi SnipEasy - Share code snippets
Unduh file ekstensi SnipEasy - Share code snippets dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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)
Informasi Dasar Ekstensi
Nama | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
URL Resmi | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Deskripsi | Powerful tool for sharing and searching code snippets among developers |
Ukuran File | 65.76 KB |
Jumlah Instalasi | 71 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2014-03-12 |
Tanggal Publikasi | 2014-03-11 |
Pengembang | Gregory Chris |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://snipeasy.com |
Bahasa yang Didukung | 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" ] } } |