Codeforces: Submission time in local timezone
View the time associated with your submissions in your local time zone
什么是Codeforces: Submission time in local timezone?
Codeforces: Submission time in local timezone是由manu-chroma开发的Chrome扩展程序,该扩展的主要功能是“View the time associated with your submissions in your local time zone”。
扩展截图
下载Codeforces: Submission time in local timezone扩展crx文件
下载Codeforces: Submission time in local timezone扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
In codeforces, the user sees submission times for their code submissions in MST (Moscow Standard Time). This extension, converts and displays the time in your local time zone.
扩展基本信息
名称 | Codeforces: Submission time in local timezone |
ID | dfegjfgkamidfikgflhkdjgejoekblhl |
官方URL | https://chromewebstore.google.com/detail/codeforces-submission-tim/dfegjfgkamidfikgflhkdjgejoekblhl |
简介 | View the time associated with your submissions in your local time zone |
文件大小 | 64.1 KB |
安装次数 | 33 |
当前版本 | 0.3 |
更新时间 | 2019-03-23 |
上架时间 | 2019-03-23 |
开发者 | manu-chroma |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/manu-chroma/CF-Local-Time |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codeforces: Submission time in local timezone", "version": "0.3", "description": "View the time associated with your submissions in your local time zone", "permissions": [ "https:\/\/codeforces.com\/submissions\/*", "https:\/\/codeforces.com\/submissions\/*", "https:\/\/codeforces.com\/contest\/*\/my", "activeTab", "declarativeContent", "storage", "management" ], "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/submissions\/*", "https:\/\/codeforces.com\/submissions\/*", "https:\/\/codeforces.com\/contest\/*\/my" ], "css": [], "js": [ "content_script.js" ] } ], "background": { "scripts": [ "vendor\/hot-reload.js" ], "persistent": false }, "web_accessible_resources": [ "*" ], "icons": { "16": "images\/icons8-timer-16.png", "32": "images\/icons8-timer-32.png", "48": "images\/icons8-timer-48.png" }, "browser_action": { "default_icon": { "16": "images\/icons8-timer-16.png", "32": "images\/icons8-timer-32.png", "48": "images\/icons8-timer-48.png" } }, "manifest_version": 2 } |