Codeforces Better Comments

A simple extension to improve your codeforces comments experience!

Что такое Codeforces Better Comments?

Codeforces Better Comments - это расширение Chrome, разработанное Ishan Joshi, и его основная функция - "A simple extension to improve your codeforces comments experience!".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Codeforces Better Comments

Скачайте файлы расширений Codeforces Better Comments в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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 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\/*"
            ]
        }
    ]
}