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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
URL страницы политики конфиденциальности | 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" ] } ] } |