leetcode-shortcuts
leetcode shortcuts
What is leetcode-shortcuts?
leetcode-shortcuts is a Chrome extension developed by yn.jiyu, and its main feature is "leetcode shortcuts".
Extension Screenshots
Download leetcode-shortcuts Extension CRX File
Download leetcode-shortcuts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | leetcode-shortcuts |
ID | ipdbhbmdmldjkdjfbkdnipjmokkinnci |
Official URL | https://chromewebstore.google.com/detail/leetcode-shortcuts/ipdbhbmdmldjkdjfbkdnipjmokkinnci |
Description | leetcode shortcuts |
File Size | 14.72 KB |
Installation Count | 23 |
Current Version | 1.13.1.4 |
Last Updated | 2024-01-30 |
Publish Date | 2022-06-12 |
Developer | yn.jiyu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Anderbone/leetcode-shortcut-browser-extension |
Supported Languages | 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" ] } ] } |