Leetcode Click to Hide Difficulty
This extension allows user to hide difficulty level in leetcode.
Что такое Leetcode Click to Hide Difficulty?
Leetcode Click to Hide Difficulty - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension allows user to hide difficulty level in leetcode.".
Скачать файл CRX расширения Leetcode Click to Hide Difficulty
Скачайте файлы расширений Leetcode Click to Hide Difficulty в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension enable you to hide difficulty level in Leetcode. Just install the extension, and click on it whenever you are on Leetcode, and the difficulty level will disappear.
Основная информация о расширении
Название | Leetcode Click to Hide Difficulty |
ID | iphbgefdkepijabekiohipokmoceddfn |
Официальный URL | https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn |
Описание | This extension allows user to hide difficulty level in leetcode. |
Размер файла | 5.46 KB |
Количество установок | 20 |
Текущая Версия | 1.1 |
Последнее Обновление | 2017-12-25 |
Дата публикации | 2017-12-25 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Leetcode Click to Hide Difficulty", "description": "This extension allows user to hide difficulty level in leetcode.", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/www.leetcode.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.leetcode.com\/*" ], "js": [ "popup.js" ] } ] } |