Codeforces Better Comments
A simple extension to improve your codeforces comments experience!
Cos'è Codeforces Better Comments?
Codeforces Better Comments è un'estensione di Chrome sviluppata da Ishan Joshi, e la sua funzione principale è "A simple extension to improve your codeforces comments experience!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codeforces Better Comments
Scarica i file di estensione Codeforces Better Comments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | dmkcpaljgkhdcachgfmplaoldejhafgn |
| URL Ufficiale | https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn |
| Descrizione | A simple extension to improve your codeforces comments experience! |
| Dimensione del File | 807 KB |
| Conteggio Installazioni | 161 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2023-08-23 |
| Data di Pubblicazione | 2023-08-16 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | Ishan Joshi |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
}
]
} | |