LeetSuite
Additional features for LeetCode
什麼是LeetSuite?
LeetSuite是由Song開發的Chrome擴展程式,該擴展的主要功能是“Additional features for LeetCode”。
擴展截圖
下載LeetSuite擴展crx文件
下載LeetSuite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
LeetSuite is completely hands-off and stays out of your way! LeetSuite works in the background so you can focus on LeetCode instead of going back and forth between answering questions and using the features of the extension. It includes a minimal popup UI that shows you what question you should retry, based on a spaced repetition algorithm. It also includes a home page that allows you to view stats on your submissions along with all the questions in your queue. Features -------------- - completely hands-off, all the features work without you doing anything! - records stats on your submissions and acceptance rate for each question - reminds you to redo questions after a certain time interval, based on spaced repetition
擴展基本資訊
名稱 | |
ID | fgpjfncacnkpldghchkgcpcgehbjbofe |
官方網址 | https://chrome.google.com/webstore/detail/leetsuite/fgpjfncacnkpldghchkgcpcgehbjbofe |
簡介 | Additional features for LeetCode |
檔案大小 | 58.94 KB |
安裝次數 | 279 |
目前版本 | 1.0.0 |
更新時間 | 2020-08-11 |
上架時間 | 2020-08-11 |
評分 | 3.67/5 共 3 次評分 |
開發者 | Song |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetSuite", "version": "1.0.0", "description": "Additional features for LeetCode", "manifest_version": 2, "permissions": [ "storage", "webRequest", "*:\/\/*.leetcode.com\/*" ], "background": { "scripts": [ ".\/background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "run_at": "document_idle", "js": [ ".\/content\/content.js" ] } ], "browser_action": { "default_popup": ".\/ui\/popup\/index.html", "default_icon": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } }, "icons": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } } |