Refined Leetcode
LeetCode 网页扩展
Refined Leetcode란 무엇입니까?
Refined Leetcode은(는) XYShaoKang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "LeetCode 网页扩展"입니다.
확장 프로그램 스크린샷
Refined Leetcode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
增强 LeetCode-cn 刷题体验 功能: - ⏱ 答题页计时器(已适配新版答题页和灵动布局答题页) - 📈 竞赛排名页面显示预测 - 💻 竞赛排名页面显示代码对应的语言图标 - 🚫 首页帖子黑名单 - 📋 题单管理侧边栏 - 📊 添加题目评分 - ❎ 比赛答题页禁用快捷键的选项 - ⚙️ 添加配置选项,所有功能支持禁用 > 更多详情和源码,请查看 https://github.com/XYShaoKang/refined-leetcode ,如果感觉好用,欢迎到仓库中点个 Star 😂
확장 프로그램 기본 정보
이름 | Refined Leetcode |
ID | kmpinnjkedaidpojenkiooddkeplniel |
공식 URL | https://chromewebstore.google.com/detail/refined-leetcode/kmpinnjkedaidpojenkiooddkeplniel |
설명 | LeetCode 网页扩展 |
파일 크기 | 358 KB |
설치 횟수 | 3,462 |
현재 버전 | 0.13.5 |
최근 업데이트 | 2023-12-07 |
출시 날짜 | 2022-03-07 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | XYShaoKang |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/XYShaoKang/refined-leetcode |
도움말 페이지 URL | https://github.com/XYShaoKang/refined-leetcode |
개인정보 보호 정책 페이지 URL | https://github.com/XYShaoKang/refined-leetcode/wiki/Privacy-policy |
지원되는 언어 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Refined Leetcode", "description": "LeetCode \u7f51\u9875\u6269\u5c55", "version": "0.13.5", "manifest_version": 3, "homepage_url": "https:\/\/github.com\/XYShaoKang\/refined-leetcode", "default_locale": "zh_CN", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "web_accessible_resources": [ { "resources": [ "\/content.bundle.js", "\/*.map", "\/file-icons\/*.svg" ], "matches": [ "*:\/\/leetcode-cn.com\/*", "*:\/\/leetcode.cn\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/leetcode-cn.com\/*", "https:\/\/leetcode.cn\/*" ], "js": [ "content-load.bundle.js" ] } ], "background": { "service_worker": "background.bundle.js" }, "options_page": "options.html", "action": { "default_popup": "popup.html" }, "content_security_policy": { "extension_pages": "default-src 'self'; script-src 'self'; script-src-elem 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' https:\/\/leetcode-rating-predictor.herokuapp.com https:\/\/leetcode-predictor.herokuapp.com https:\/\/leetcode-cn.com https:\/\/leetcode.cn https:\/\/lccn.lbao.site https:\/\/leetcode.com" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/leetcode-cn.com\/*", "https:\/\/leetcode.cn\/*", "https:\/\/leetcode-rating-predictor.herokuapp.com\/*", "https:\/\/leetcode-predictor.herokuapp.com\/*", "https:\/\/lccn.lbao.site\/*", "https:\/\/leetcode.com\/*" ], "externally_connectable": { "matches": [ "https:\/\/leetcode-cn.com\/*", "https:\/\/leetcode.cn\/*" ] } } |