MergEase
Boosts your code reviews by improving the GitHub pull request interface.
ما هو MergEase؟
MergEase هو إضافة Chrome تم تطويرها بواسطة https://mergease.com، والميزة الرئيسية لها هي "Boosts your code reviews by improving the GitHub pull request interface.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة MergEase
قم بتنزيل ملفات الامتداد MergEase بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Here's a closer look at what MergEase can do:
Display moved code blocks: It can be difficult to track code that has been moved within a file, but MergEase makes it easy by highlighting moved code blocks and showing you where they've been moved to.
Highlight changes: Instead of reviewing entire lines of code, MergEase only displays the changes made. This helps you get a clearer understanding of what has been modified, and reduces the time it takes to review code.
Structural code comparison: MergEase doesn't only compare text files, it looks at the structures of the code and provides a smarter diff so you don't have to manually find patterns. معلومات أساسية عن التمديد
| الاسم | |
| ID | cpmdkallcicfjmficnfeggjmegjcophe |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/mergease/cpmdkallcicfjmficnfeggjmegjcophe |
| الوصف | Boosts your code reviews by improving the GitHub pull request interface. |
| حجم الملف | 263 KB |
| عدد التثبيتات | 70 |
| النسخة الحالية | 0.2.0 |
| آخر تحديث | 2023-09-23 |
| تاريخ النشر | 2023-03-10 |
| تقييم | 5.00/5 مجموع تقييمات 3 |
| المطور | https://mergease.com |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://mergease.com |
| عنوان صفحة سياسة الخصوصية | https://mergease.com/privacy |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "0.2.0",
"name": "MergEase",
"description": "Boosts your code reviews by improving the GitHub pull request interface.",
"background": {
"service_worker": "serviceworker.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "normal-128.png"
},
"icons": {
"128": "normal-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"normal-128.png"
],
"matches": [
"https:\/\/github.com\/*"
]
},
{
"resources": [
"swap-horizontal.svg"
],
"matches": [
"https:\/\/github.com\/*"
]
},
{
"resources": [
"lock-outline.svg"
],
"matches": [
"https:\/\/github.com\/*"
]
},
{
"resources": [
"alert-circle-outline.svg"
],
"matches": [
"https:\/\/github.com\/*"
]
}
],
"permissions": [
"storage"
]
} | |