Devsheet
Search and create code snippets
ما هو Devsheet؟
Devsheet هو إضافة Chrome تم تطويرها بواسطة https://devsheet.com، والميزة الرئيسية لها هي "Search and create code snippets".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Devsheet
قم بتنزيل ملفات الامتداد Devsheet بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.
معلومات أساسية عن التمديد
الاسم | |
ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
الوصف | Search and create code snippets |
حجم الملف | 173 KB |
عدد التثبيتات | 168 |
النسخة الحالية | 1.3 |
آخر تحديث | 2020-11-11 |
تاريخ النشر | 2019-07-20 |
تقييم | 4.00/5 مجموع تقييمات 4 |
المطور | https://devsheet.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://devsheet.com |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devsheet", "manifest_version": 2, "description": "Search and create code snippets", "version": "1.3", "browser_action": { "default_icon": "icon.png", "default_title": "Devsheet", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "https:\/\/devsheet.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "lib\/prism.js", "js\/content-script.js" ], "css": [ "css\/dsStyle.css" ] } ] } |