Leetcode Click to Hide Difficulty
This extension allows user to hide difficulty level in leetcode.
Leetcode Click to Hide Difficulty là gì?
Leetcode Click to Hide Difficulty là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension allows user to hide difficulty level in leetcode.".
Tải xuống tệp CRX của tiện ích mở rộng Leetcode Click to Hide Difficulty
Tải xuống các tệp mở rộng Leetcode Click to Hide Difficulty dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Leetcode Click to Hide Difficulty |
ID | iphbgefdkepijabekiohipokmoceddfn |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn |
Mô tả | This extension allows user to hide difficulty level in leetcode. |
Kích Thước Tệp | 5.46 KB |
Số Lần Cài Đặt | 20 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2017-12-25 |
Ngày Phát Hành | 2017-12-25 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |