Codeforces Green Dot
Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.
Cos'è Codeforces Green Dot?
Codeforces Green Dot è un'estensione di Chrome sviluppata da Khaled Alam, e la sua funzione principale è "Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codeforces Green Dot
Scarica i file di estensione Codeforces Green Dot 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
Codeforces.com platform recent actions feed & friends list status and submissions. Informazioni di Base sull'Estensione
| Nome | |
| ID | hkdknjllamblhnehflcgeabkhkldpjcg |
| URL Ufficiale | https://chromewebstore.google.com/detail/codeforces-green-dot/hkdknjllamblhnehflcgeabkhkldpjcg |
| Descrizione | Shows recent blog actions on codeforces.com platform and check your friends list status and submissions. |
| Dimensione del File | 233 KB |
| Conteggio Installazioni | 260 |
| Versione Corrente | 2.0.1.0 |
| Ultimo Aggiornamento | 2022-02-17 |
| Data di Pubblicazione | 2019-10-18 |
| Valutazione | 3.40/5 Totale 5 Valutazioni |
| Sviluppatore | Khaled Alam |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://codeforcesgreendot.com |
| URL della Pagina di Aiuto | http://codeforces.com/blog/entry/49868 |
| URL della Pagina della Politica sulla Privacy | https://codeforcesgreendot.com/privacy |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Codeforces Green Dot",
"short_name": "CFGreenDot",
"description": "Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.",
"version": "2.0.1.0",
"browser_action": {
"default_icon": "icons\/icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"80": "icons\/icon80.png",
"128": "icons\/icon128.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/*.codeforces.com\/*"
],
"css": [
"assets\/css\/bootstrap.min.css"
],
"js": [
"assets\/js\/jquery.js",
"assets\/js\/bootstrap.js",
"assets\/js\/contentscript.js"
]
}
],
"background": {
"content_scripts": [
"background.js"
]
}
} | |