leetcode-shortcuts
leetcode shortcuts
什麼是leetcode-shortcuts?
leetcode-shortcuts是由yn.jiyu開發的Chrome擴展程式,該擴展的主要功能是“leetcode shortcuts”。
擴展截圖
下載leetcode-shortcuts擴展crx文件
下載leetcode-shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
LeetCode shortcuts, allow you to commit your code by pressing Ctrl + Enter. Run with example test cases: Ctrl + ' Submit: Ctrl + Enter Retrieve last submitted code: Ctrl + Alt + m Reset to default (clear): Ctrl + Alt + l
擴展基本資訊
名稱 | leetcode-shortcuts |
ID | ipdbhbmdmldjkdjfbkdnipjmokkinnci |
官方網址 | https://chromewebstore.google.com/detail/leetcode-shortcuts/ipdbhbmdmldjkdjfbkdnipjmokkinnci |
簡介 | leetcode shortcuts |
檔案大小 | 14.72 KB |
安裝次數 | 23 |
目前版本 | 1.13.1.4 |
更新時間 | 2024-01-30 |
上架時間 | 2022-06-12 |
開發者 | yn.jiyu |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Anderbone/leetcode-shortcut-browser-extension |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "leetcode-shortcuts", "version": "1.13.1.4", "description": "leetcode shortcuts", "icons": { "48": "icons\/leetcode_logo.png" }, "action": { "default_icon": "icons\/leetcode_logo.png", "default_title": "Leetcode shortcuts", "default_popup": "shortcut.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.leetcode.com\/*" ], "js": [ "shortcut.js" ], "css": [ "shortcut.css" ] } ] } |