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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ahmed Siadomar, και η κύρια λειτουργία του είναι "Adds back the old Kattis UI buttons on problem pages as well as a toggle to hide the editor panel.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Kattis UI Fix
Λήψη αρχείων επέκτασης Kattis UI Fix σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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" } ] } |