SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Co to jest SnipEasy - Share code snippets?
SnipEasy - Share code snippets to rozszerzenie Chrome opracowane przez Gregory Chris, a jego główną funkcją jest „Powerful tool for sharing and searching code snippets among developers”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SnipEasy - Share code snippets
Pobierz pliki rozszerzeń SnipEasy - Share code snippets w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
Oficjalny URL | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Opis | Powerful tool for sharing and searching code snippets among developers |
Rozmiar pliku | 65.76 KB |
Liczba instalacji | 71 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2014-03-12 |
Data Publikacji | 2014-03-11 |
Deweloper | Gregory Chris |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://snipeasy.com |
Obsługiwane Języki | 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" ] } } |