Kattis UI Fix

Adds back the old Kattis UI buttons on problem pages as well as a toggle to hide the editor panel.

Kattis UI Fix란 무엇입니까?

Kattis UI Fix은(는) Ahmed Siadomar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds back the old Kattis UI buttons on problem pages as well as a toggle to hide the editor panel."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Kattis UI Fix 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Kattis recently overhauled their UI, and in the new wave of changes two very important buttons were unfortunately removed: the "My Submissions" and "Statistics" buttons on each problem's page. But no more! With this extension, these buttons will come back better than ever! You will be able to finally feel more familiar with the new Kattis design, as we all know that UI overhauls can be difficult and trying times.

Additionally, this extension adds a "Toggle Editor" button to toggle viewing/hiding the new code editor panel. Now you can view the problem description in it's full form (which hopefully results in more AC and less WA).


Updates:

June 22, 2022 Update
- Added ability to see the statistics and toggle button even when not signed in
- Added a difficulty row to the problem page and options to sort problems by users instead of submissions like in the old Kattis, thanks to Hazem !!

July 11, 2022 Update
- Kattis added back the difficulty row on the problem page so the extra one is now redundant
- Added the sort buttons to problem sources and problem authors pages
- Fixed some small errors

July 20, 2022 Update
- Support for problem pages on subdomains like https://nac22.kattis.com/

August 14, 2022 Update
- Fixed a bug with the toggle editor button not working properly.                    

확장 프로그램 기본 정보

이름 Kattis UI Fix Kattis UI Fix
ID kckoageadjeklhnjbaldalncljeiokab
공식 URL https://chromewebstore.google.com/detail/kattis-ui-fix/kckoageadjeklhnjbaldalncljeiokab
설명 Adds back the old Kattis UI buttons on problem pages as well as a toggle to hide the editor panel.
파일 크기 32.8 KB
설치 횟수 50
현재 버전 0.1.5
최근 업데이트 2022-08-16
출시 날짜 2022-06-06
평점 5.00/5 총 1 개의 평점
개발자 Ahmed Siadomar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ahmedsiad/Kattis-UI-Fix
도움말 페이지 URL https://github.com/ahmedsiad/Kattis-UI-Fix
개인정보 보호 정책 페이지 URL https://www.privacypolicies.com/live/aaf4170a-f2ca-436a-9996-432e491502ca
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Kattis UI Fix ",
    "description": "Adds back the old Kattis UI buttons on problem pages as well as a toggle to hide the editor panel.",
    "version": "0.1.5",
    "icons": {
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.kattis.com\/problems\/*",
                "https:\/\/*.kattis.com\/contests\/*\/problems\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/open.kattis.com\/problems",
                "https:\/\/open.kattis.com\/problems?*",
                "https:\/\/open.kattis.com\/problem-authors\/*",
                "https:\/\/open.kattis.com\/problem-sources\/*"
            ],
            "js": [
                "auth_sorting.js"
            ],
            "css": [
                "auth_sorting.css"
            ],
            "run_at": "document_idle"
        }
    ]
}