Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
Vad är Timus Friends?
Timus Friends är en Chrome-tillägg utvecklad av Slava Shklyaev, och dess huvudfunktion är "Adds Codeforces-style friending to the Timus Online Judge.".
Tilläggsskärmbilder
Ladda ner Timus Friends-förlängningens CRX-fil
Ladda ner Timus Friends-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | Timus Friends |
ID | fnldfcnfdacapllemlcdmmlijnpbcoal |
Officiell webbadress | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal |
Beskrivning | Adds Codeforces-style friending to the Timus Online Judge. |
Filstorlek | 29.14 KB |
Antal Installationer | 73 |
Aktuell Version | 1.1.0 |
Senast Uppdaterad | 2016-07-12 |
Publiceringsdatum | 2016-07-11 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | Slava Shklyaev |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/slava-sh/timus-friends |
Stödda Språk | 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" } ] } |