SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
Was ist SnipEasy - Share code snippets?
SnipEasy - Share code snippets ist eine Chrome-Erweiterung, die von Gregory Chris entwickelt wurde, und ihr Hauptmerkmal ist "Powerful tool for sharing and searching code snippets among developers".
Erweiterungsscreenshots
SnipEasy - Share code snippets-Erweiterungs-CRX-Datei herunterladen
Laden Sie SnipEasy - Share code snippets-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
Offizielle URL | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Beschreibung | Powerful tool for sharing and searching code snippets among developers |
Dateigröße | 65.76 KB |
Installationsanzahl | 71 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2014-03-12 |
Veröffentlichungsdatum | 2014-03-11 |
Entwickler | Gregory Chris |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://snipeasy.com |
Unterstützte Sprachen | 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" ] } } |