Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
Wat is Timus Friends?
Timus Friends is een Chrome-extensie ontwikkeld door Slava Shklyaev, en de belangrijkste functie is "Adds Codeforces-style friending to the Timus Online Judge.".
Extensie Screenshots
Download het CRX-bestand van de extensie Timus Friends
Download Timus Friends-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
Basisinformatie over de Extensie
Naam | Timus Friends |
ID | fnldfcnfdacapllemlcdmmlijnpbcoal |
Officiële URL | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal |
Beschrijving | Adds Codeforces-style friending to the Timus Online Judge. |
Bestandsgrootte | 29.14 KB |
Aantal Installaties | 73 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2016-07-12 |
Publicatiedatum | 2016-07-11 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Slava Shklyaev |
Betalingswijze | free |
Extensiewebsite | https://github.com/slava-sh/timus-friends |
Ondersteunde Talen | 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" } ] } |