Github Open With
Open your Github repository with 3rd party web IDEs
ما هو Github Open With؟
Github Open With هو إضافة Chrome تم تطويرها بواسطة nir، والميزة الرئيسية لها هي "Open your Github repository with 3rd party web IDEs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Github Open With
قم بتنزيل ملفات الامتداد Github Open With بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Chrome extension that helps you open Github repositories in a different 3rd party IDES. When navigating to any github repository, you can click on the green code button and see new options: - Open in Github Dev - Open in Github1s - Open in StackBlitz - Open in CodeSandbox
معلومات أساسية عن التمديد
الاسم | Github Open With |
ID | dggpihfahccepeedgkckjlcfgnfbjofe |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe |
الوصف | Open your Github repository with 3rd party web IDEs |
حجم الملف | 11.29 KB |
عدد التثبيتات | 194 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2023-09-19 |
تاريخ النشر | 2021-06-12 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | nir |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/nirtamir2/github-open-repository-with |
عنوان صفحة المساعدة | https://github.com/nirtamir2/github-open-repository-with |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Open With", "version": "1.2.0", "description": "Open your Github repository with 3rd party web IDEs", "author": "Nir Tamir", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with", "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*\/*", "https:\/\/*.github.com\/*\/*" ], "all_frames": true, "js": [ "contentScript.js" ] } ] } |