CF static site enchancer
Enhances the static codeforces websites with additional features so that you get a complete environment during contests
什麼是CF static site enchancer?
CF static site enchancer是由Ashutosh Nilesh Patkar開發的Chrome擴展程式,該擴展的主要功能是“Enhances the static codeforces websites with additional features so that you get a complete environment during contests”。
擴展截圖
下載CF static site enchancer擴展crx文件
下載CF static site enchancer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A lot of people like appearing for codeforces contests on the static websites. It is fast and distraction free. But it doesn't have some of the key features that we need when participating in a contest. This extension aims towards enhancing the static (m1,m2,m3) codeforces websites with additional features so that you get a complete environment during contests Features include Previous version Submission count for the problems. Update adds new features like Copy button for copying input data to clipboard. Predicted rating change. Friends standings. Thanks to CF Predictor extension whose backend service is used to fetch the predicted rating change. Each feature is accessible separately so that the browser doesn't make unnecessary computations and you can use only the features that you want to use.
擴展基本資訊
名稱 | |
ID | kephibooehcpbfddbnpgphdmpdmpkika |
官方網址 | https://chrome.google.com/webstore/detail/cf-static-site-enchancer/kephibooehcpbfddbnpgphdmpdmpkika |
簡介 | Enhances the static codeforces websites with additional features so that you get a complete environment during contests |
檔案大小 | 110 KB |
安裝次數 | 734 |
目前版本 | 2.0.0 |
更新時間 | 2021-07-27 |
上架時間 | 2020-07-21 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Ashutosh Nilesh Patkar |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/Holmes7/CF-Static-Site-Enhancer |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF static site enchancer", "version": "2.0.0", "description": "Enhances the static codeforces websites with additional features so that you get a complete environment during contests", "manifest_version": 3, "icons": { "48": "static\/icon48.png", "64": "static\/icon64.png", "128": "static\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/m1.codeforces.com\/contest\/*", "*:\/\/m2.codeforces.com\/contest\/*", "*:\/\/m3.codeforces.com\/contest\/*" ], "css": [ "tables.css" ], "js": [ "main.js" ] }, { "matches": [ "*:\/\/m1.codeforces.com\/contest\/*\/problem\/*", "*:\/\/m2.codeforces.com\/contest\/*\/problem\/*", "*:\/\/m3.codeforces.com\/contest\/*\/problem\/*" ], "js": [ "copy.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/codeforces.com\/*", "https:\/\/cf-predictor.herokuapp.com\/*" ] } |