Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
什么是Timus Friends?
Timus Friends是由Slava Shklyaev开发的Chrome扩展程序,该扩展的主要功能是“Adds Codeforces-style friending to the Timus Online Judge.”。
扩展截图
下载Timus Friends扩展crx文件
下载Timus Friends扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | Timus Friends |
ID | fnldfcnfdacapllemlcdmmlijnpbcoal |
官方URL | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal |
简介 | Adds Codeforces-style friending to the Timus Online Judge. |
文件大小 | 29.14 KB |
安装次数 | 73 |
当前版本 | 1.1.0 |
更新时间 | 2016-07-12 |
上架时间 | 2016-07-11 |
评分 | 5.00/5 共5次评分 |
开发者 | Slava Shklyaev |
付费类型 | free |
扩展官网 | https://github.com/slava-sh/timus-friends |
支持的语言 | 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" } ] } |