Leetcode Click to Hide Difficulty
This extension allows user to hide difficulty level in leetcode.
What is Leetcode Click to Hide Difficulty?
Leetcode Click to Hide Difficulty is a Chrome extension developed by Unknown, and its main feature is "This extension allows user to hide difficulty level in leetcode.".
Download Leetcode Click to Hide Difficulty Extension CRX File
Download Leetcode Click to Hide Difficulty extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Leetcode Click to Hide Difficulty |
ID | iphbgefdkepijabekiohipokmoceddfn |
Official URL | https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn |
Description | This extension allows user to hide difficulty level in leetcode. |
File Size | 5.46 KB |
Installation Count | 20 |
Current Version | 1.1 |
Last Updated | 2017-12-25 |
Publish Date | 2017-12-25 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" ] } ] } |