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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
} | |