Codeforces Better Comments
A simple extension to improve your codeforces comments experience!
Codeforces Better Comments란 무엇입니까?
Codeforces Better Comments은(는) Ishan Joshi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple extension to improve your codeforces comments experience!"입니다.
확장 프로그램 스크린샷
Codeforces Better Comments 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add the following features to codeforces blog comments: - Button to sort comments by comment rating - Button to collapse subcomments - Button to instant message the comment author - Filter comments based on author rating - Filter comments based on comment rating
확장 프로그램 기본 정보
이름 | Codeforces Better Comments |
ID | dmkcpaljgkhdcachgfmplaoldejhafgn |
공식 URL | https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn |
설명 | A simple extension to improve your codeforces comments experience! |
파일 크기 | 807 KB |
설치 횟수 | 161 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2023-08-23 |
출시 날짜 | 2023-08-16 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Ishan Joshi |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeforces Better Comments", "description": "A simple extension to improve your codeforces comments experience!", "version": "1.0.4", "icons": { "16": "assets\/logo\/logo-16.png", "32": "assets\/logo\/logo-32.png", "48": "assets\/logo\/logo-48.png", "128": "assets\/logo\/logo-128.png" }, "options_page": "settings\/settings.html", "action": { "default_title": "Codeforces Better Comments", "default_popup": "popup\/popup.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/codeforces.com\/*" ] } ], "background": { "service_worker": "background\/service-worker.js" }, "content_scripts": [ { "css": [ "content\/content-script.css" ], "js": [ "content\/content-script.js" ], "matches": [ "https:\/\/codeforces.com\/blog\/entry\/*" ] } ] } |