leetcode cheatsheet
刷题小助手,made by 力扣加加
什么是leetcode cheatsheet?
leetcode cheatsheet是由https://leetcode-solution.cn开发的Chrome扩展程序,该扩展的主要功能是“刷题小助手,made by 力扣加加”。
扩展截图
下载leetcode cheatsheet扩展crx文件
下载leetcode cheatsheet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
刷题小助手,帮助你高效刷题 , made by 力扣加加(公众号同名) https://github.com/azl397985856/leetcode-cheat
扩展基本信息
名称 | leetcode cheatsheet |
ID | fniccleejlofifaakbgppmbbcdfjonle |
官方URL | https://chromewebstore.google.com/detail/leetcode-cheatsheet/fniccleejlofifaakbgppmbbcdfjonle |
简介 | 刷题小助手,made by 力扣加加 |
文件大小 | 4.38 MB |
安装次数 | 7,351 |
当前版本 | 0.11.5 |
更新时间 | 2024-02-23 |
上架时间 | 2020-12-03 |
评分 | 4.60/5 共10次评分 |
开发者 | https://leetcode-solution.cn |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://leetcode-solution.cn/download |
帮助页面URL | https://leetcode-solution.cn/download |
隐私政策页面URL | https://www.generateprivacypolicy.com/live.php?token=v3NJKMqkc7kTBL0EHCPcdxAeo1seDnWZ |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "leetcode cheatsheet", "description": "\u5237\u9898\u5c0f\u52a9\u624b\uff0cmade by \u529b\u6263\u52a0\u52a0", "version": "0.11.5", "browser_action": { "default_popup": "index.html", "default_title": "\u529b\u6263\u52a0\u52a0" }, "homepage_url": "https:\/\/leetcode-solution.cn\/download", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/leetcode-cn.com\/*", "*:\/\/leetcode.com\/*", "*:\/\/leetcode.cn\/*" ], "js": [ "\/static\/js\/inject.js" ] } ], "web_accessible_resources": [ "\/static\/js\/content.js" ], "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' 'sha256-9HcBuUP35aPkU0991A4mASdsuifTkUlifJ7elThz6Ow=' 'sha256-0Jo\/EYaXS11i7poc\/P9fGcq\/o6P0djny2JW6WivTVVw='; object-src 'self'" } |