Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
What is Timus Friends?
Timus Friends is a Chrome extension developed by Slava Shklyaev, and its main feature is "Adds Codeforces-style friending to the Timus Online Judge.".
Extension Screenshots
Download Timus Friends Extension CRX File
Download Timus Friends extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | Timus Friends |
ID | fnldfcnfdacapllemlcdmmlijnpbcoal |
Official URL | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal |
Description | Adds Codeforces-style friending to the Timus Online Judge. |
File Size | 29.14 KB |
Installation Count | 73 |
Current Version | 1.1.0 |
Last Updated | 2016-07-12 |
Publish Date | 2016-07-11 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Slava Shklyaev |
Payment Type | free |
Extension Website | https://github.com/slava-sh/timus-friends |
Supported Languages | 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" } ] } |