Leetcode Eye Patch
Hides away Leetcode's Difficulty and Acceptance Rate columns.
什麼是Leetcode Eye Patch?
Leetcode Eye Patch是由annayen2008開發的Chrome擴展程式,該擴展的主要功能是“Hides away Leetcode's Difficulty and Acceptance Rate columns.”。
擴展截圖
下載Leetcode Eye Patch擴展crx文件
下載Leetcode Eye Patch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Update 12/27/2017: updated for new leetcode ui, screenshots to follow Hides away Leetcode's Difficulty and Acceptance Rate information so that you won't get nervous when doing a hard problem or one with a very low acceptance rate. Also has the option of hiding away locked problems. (click the eye patch icon to see.) New feature in v0.3: after you pass the problem, Acceptance Rate and Difficulty level will show right below the "Accepted" text to add extra satisfaction when finishing a problem and seeing it was actually hard. Suggested by Chryscord from reddit. Github url: https://github.com/Nevvea7/eyepatch Feel free to contribute in any way!
擴展基本資訊
名稱 | Leetcode Eye Patch |
ID | jmpkmcogglidbaggbahfidgcpjmeeomn |
官方網址 | https://chromewebstore.google.com/detail/leetcode-eye-patch/jmpkmcogglidbaggbahfidgcpjmeeomn |
簡介 | Hides away Leetcode's Difficulty and Acceptance Rate columns. |
檔案大小 | 40.19 KB |
安裝次數 | 188 |
目前版本 | 0.10 |
更新時間 | 2017-12-27 |
上架時間 | 2017-12-27 |
評分 | 4.50/5 共 8 次評分 |
開發者 | annayen2008 |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Eye Patch", "description": "Hides away Leetcode's Difficulty and Acceptance Rate columns.", "version": "0.10", "background": { "scripts": [ "jquery.js", "jquery-watch.min.js", "background.js" ] }, "permissions": [ "storage" ], "browser_action": { "default_title": "Leetcode Eye Patch", "default_icon": "icon16.png", "default_popup": "options.html" }, "icons": { "16": "icon16.png", "48": "icon48.png" }, "content_scripts": [ { "matches": [ "http:\/\/leetcode.com\/problemset\/*", "https:\/\/leetcode.com\/problemset\/*", "http:\/\/leetcode.com\/problems\/*", "https:\/\/leetcode.com\/problems\/*" ], "js": [ "jquery.js", "jquery-watch.min.js", "background.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2 } |