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 |
官方網址 | 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" } ] } |