LeetPlug
This extension adds tracking features to the LeetCode interface.
ما هو LeetPlug؟
LeetPlug هو إضافة Chrome تم تطويرها بواسطة leetplug، والميزة الرئيسية لها هي "This extension adds tracking features to the LeetCode interface.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LeetPlug
قم بتنزيل ملفات الامتداد LeetPlug بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a browser extension that is able to interact with LeetCode official site. It can track the activities on each problem and all the related events: submissions, time spent coding the solution, repetitions of a problem.
معلومات أساسية عن التمديد
الاسم | LeetPlug |
ID | mcpaohflldejneeahigainahjenkgmef |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef |
الوصف | This extension adds tracking features to the LeetCode interface. |
حجم الملف | 45.18 KB |
عدد التثبيتات | 1,358 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2020-08-21 |
تاريخ النشر | 2020-07-26 |
تقييم | 4.25/5 مجموع تقييمات 12 |
المطور | leetplug |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://leetplug.azurewebsites.net |
عنوان صفحة سياسة الخصوصية | https://leetplug.azurewebsites.net/static/pages/policy.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LeetPlug", "description": "This extension adds tracking features to the LeetCode interface.", "version": "1.1.1", "icons": { "16": "images\/brain16.png", "24": "images\/brain24.png", "32": "images\/brain32.png", "128": "images\/brain128.png" }, "browser_action": { "default_icon": "images\/brain24.png", "default_popup": "src\/popup.html" }, "permissions": [ "storage", "*:\/\/leetplug.azurewebsites.net\/*" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "run_at": "document_start", "js": [ "thirdParty\/jquery-3.5.1.slim.min.js", "src\/problemsScript.js" ] } ] } |