SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
ما هو SnipEasy - Share code snippets؟
SnipEasy - Share code snippets هو إضافة Chrome تم تطويرها بواسطة Gregory Chris، والميزة الرئيسية لها هي "Powerful tool for sharing and searching code snippets among developers".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SnipEasy - Share code snippets
قم بتنزيل ملفات الامتداد SnipEasy - Share code snippets بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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)
معلومات أساسية عن التمديد
الاسم | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
الوصف | Powerful tool for sharing and searching code snippets among developers |
حجم الملف | 65.76 KB |
عدد التثبيتات | 71 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2014-03-12 |
تاريخ النشر | 2014-03-11 |
المطور | Gregory Chris |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://snipeasy.com |
اللغات المدعومة | 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" ] } } |