Leetmark
Converts a Leetcode problem page into Github Flavored Markdown
ما هو Leetmark؟
Leetmark هو إضافة Chrome تم تطويرها بواسطة CRIMX، والميزة الرئيسية لها هي "Converts a Leetcode problem page into Github Flavored Markdown".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Leetmark
قم بتنزيل ملفات الامتداد Leetmark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Share your ingenious Leetcode solutions like a BOSS.
Leetmark generates a decent Github Flavored Markdown template from a Leetcode problem description page.
Meta data is stored as Front Matter from which Github will generate a neat data table. Also useful for other blog frameworks.
Additional JSON data export. معلومات أساسية عن التمديد
| الاسم | |
| ID | pbpcnaodgahdlijbhjeohbjoafbdafdp |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/leetmark/pbpcnaodgahdlijbhjeohbjoafbdafdp |
| الوصف | Converts a Leetcode problem page into Github Flavored Markdown |
| حجم الملف | 22.43 KB |
| عدد التثبيتات | 49 |
| النسخة الحالية | 0.4.0 |
| آخر تحديث | 2019-04-28 |
| تاريخ النشر | 2019-04-28 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | CRIMX |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/crimx/crx-leetmark |
| عنوان صفحة المساعدة | https://github.com/crimx/crx-leetmark/issues |
| عنوان صفحة سياسة الخصوصية | https://www.crimx.com/privacy-policy |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"manifest_version": 2,
"minimum_chrome_version": "55",
"name": "Leetmark",
"short_name": "Leetmark",
"description": "Converts a Leetcode problem page into Github Flavored Markdown",
"version": "0.4.0",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"icons": {
"512": "leetmark.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*.leetcode.com\/problems\/*",
"https:\/\/*.leetcode-cn.com\/problems\/*"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"512": "leetmark.png"
},
"default_title": "Click to generate Markdown from a Leetcode problem page",
"default_popup": "popup.html"
},
"permissions": [
"https:\/\/*.leetcode.com\/*",
"https:\/\/*.leetcode-cn.com\/*"
]
} | |