Codeforces Green Dot
Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.
Wat is Codeforces Green Dot?
Codeforces Green Dot is een Chrome-extensie ontwikkeld door Khaled Alam, en de belangrijkste functie is "Shows recent blog actions on codeforces.com platform and check your friends list status and submissions.".
Extensie Screenshots
Download het CRX-bestand van de extensie Codeforces Green Dot
Download Codeforces Green Dot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Codeforces.com platform recent actions feed & friends list status and submissions. Basisinformatie over de Extensie
| Naam | |
| ID | hkdknjllamblhnehflcgeabkhkldpjcg |
| Officiële URL | https://chromewebstore.google.com/detail/codeforces-green-dot/hkdknjllamblhnehflcgeabkhkldpjcg |
| Beschrijving | Shows recent blog actions on codeforces.com platform and check your friends list status and submissions. |
| Bestandsgrootte | 233 KB |
| Aantal Installaties | 260 |
| Huidige Versie | 2.0.1.0 |
| Laatst Bijgewerkt | 2022-02-17 |
| Publicatiedatum | 2019-10-18 |
| Beoordeling | 3.40/5 Totaal 5 Beoordelingen |
| Ontwikkelaar | Khaled Alam |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://codeforcesgreendot.com |
| Help Pagina-URL | http://codeforces.com/blog/entry/49868 |
| URL van de Privacybeleid Pagina | https://codeforcesgreendot.com/privacy |
| Ondersteunde Talen | 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"
]
}
} | |