CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Что такое CF World Standings?
CF World Standings - это расширение Chrome, разработанное brenopoggiali, и его основная функция - "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".
Снимки экрана расширения
Скачать файл CRX расширения CF World Standings
Скачайте файлы расширений CF World Standings в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
All the countries with more than 5 active users are listed and the lists are updated every weekend. Unfortunately, Codeforces does not allow us to have a list with more than 1000 users. In those cases, we give preference for active users (those who played a contest in the last month) and those with higher ratings. Основная информация о расширении
| Название | |
| ID | caginmipmmelcmijagfppgdljepiioak |
| Официальный URL | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
| Описание | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
| Размер файла | 74.43 KB |
| Количество установок | 8,393 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2020-04-02 |
| Дата публикации | 2020-03-31 |
| Рейтинг | 4.53/5 Всего 17 оценок |
| Разработчик | brenopoggiali |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://github.com/brenopoggiali/CF-World-Standings |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "CF World Standings ",
"description": "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.",
"version": "1.0.1",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/jquery.min.js",
"js\/background.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_icon": "icons\/icon16.png",
"default_popup": "index.html",
"default_title": "CF World Standings"
},
"permissions": [
"tabs",
"storage"
]
} | |