Codeforces Better Comments

A simple extension to improve your codeforces comments experience!

Co to jest Codeforces Better Comments?

Codeforces Better Comments to rozszerzenie Chrome opracowane przez Ishan Joshi, a jego główną funkcją jest „A simple extension to improve your codeforces comments experience!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Codeforces Better Comments

Pobierz pliki rozszerzeń Codeforces Better Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Codeforces Better Comments Codeforces Better Comments
ID dmkcpaljgkhdcachgfmplaoldejhafgn
Oficjalny URL https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn
Opis A simple extension to improve your codeforces comments experience!
Rozmiar pliku 807 KB
Liczba instalacji 161
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2023-08-23
Data Publikacji 2023-08-16
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Ishan Joshi
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}