Clip LeetCode

Copy the LeetCode problem to your clipboard.

ما هو Clip LeetCode؟

Clip LeetCode هو إضافة Chrome تم تطويرها بواسطة Edgar Ong، والميزة الرئيسية لها هي "Copy the LeetCode problem to your clipboard.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Clip LeetCode

قم بتنزيل ملفات الامتداد Clip LeetCode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Spend less time switching between your browser and code editor.

Use the Copy button to easily paste the problem, examples, and contraints in your IDE for reference when you're working on your solution.

You can also use the Copy Markdown button for the formatted problem ready to save as markdown.                    

معلومات أساسية عن التمديد

الاسم Clip LeetCode Clip LeetCode
ID cnghimckckgcmhbdokjielmhkmnagdcp
عنوان URL الرسمي https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp
الوصف Copy the LeetCode problem to your clipboard.
حجم الملف 7.43 KB
عدد التثبيتات 416
النسخة الحالية 2.0.4
آخر تحديث 2023-12-31
تاريخ النشر 2021-03-17
تقييم 5.00/5 مجموع تقييمات 4
المطور Edgar Ong
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/eddgr/clip-leetcode
عنوان صفحة المساعدة https://github.com/eddgr/clip-leetcode
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clip LeetCode",
    "version": "2.0.4",
    "description": "Copy the LeetCode problem to your clipboard.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                "*:\/\/*.leetcode.com\/problems\/*",
                "*:\/\/*.leetcode.com\/contest\/*\/problems\/*"
            ]
        }
    ]
}