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