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是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension allows user to hide difficulty level in leetcode.”。
下載Leetcode Click to Hide Difficulty擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |