Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
Was ist Timus Friends?
Timus Friends ist eine Chrome-Erweiterung, die von Slava Shklyaev entwickelt wurde, und ihr Hauptmerkmal ist "Adds Codeforces-style friending to the Timus Online Judge.".
Erweiterungsscreenshots
Timus Friends-Erweiterungs-CRX-Datei herunterladen
Laden Sie Timus Friends-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fnldfcnfdacapllemlcdmmlijnpbcoal |
| Offizielle URL | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal |
| Beschreibung | Adds Codeforces-style friending to the Timus Online Judge. |
| Dateigröße | 29.14 KB |
| Installationsanzahl | 73 |
| Aktuelle Version | 1.1.0 |
| Letztes Update | 2016-07-12 |
| Veröffentlichungsdatum | 2016-07-11 |
| Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
| Entwickler | Slava Shklyaev |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/slava-sh/timus-friends |
| Unterstützte Sprachen | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "1.1.0",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/acm.timus.ru\/*"
],
"js": [
"scripts\/element_observer.js",
"scripts\/locales.js",
"scripts\/common.js",
"scripts\/menu.js"
],
"css": [
"styles\/button.css"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/acm.timus.ru\/author.aspx?*"
],
"js": [
"scripts\/element_observer.js",
"scripts\/locales.js",
"scripts\/common.js",
"scripts\/author.js",
"scripts\/ranklist.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/acm.timus.ru\/ranklist.aspx*",
"*:\/\/acm.timus.ru\/search.aspx*"
],
"exclude_matches": [
"*:\/\/acm.timus.ru\/ranklist.aspx?friends*"
],
"js": [
"scripts\/element_observer.js",
"scripts\/locales.js",
"scripts\/common.js",
"scripts\/ranklist.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/acm.timus.ru\/ranklist.aspx?friends*"
],
"js": [
"scripts\/element_observer.js",
"scripts\/locales.js",
"scripts\/common.js",
"scripts\/friends.js"
],
"css": [
"styles\/friends.css"
],
"run_at": "document_start"
}
]
} | |