Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
什麼是Codeforces Solutions?
Codeforces Solutions是由Navpreet Singh開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…”。
擴展截圖
下載Codeforces Solutions擴展crx文件
下載Codeforces Solutions擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any codeforces problem and click on the extension. You get all submitted solutions!
擴展基本資訊
名稱 | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
官方網址 | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
簡介 | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
檔案大小 | 35.71 KB |
安裝次數 | 443 |
目前版本 | 0.3 |
更新時間 | 2023-06-22 |
上架時間 | 2023-06-20 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Navpreet Singh |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeforces Solutions", "version": "0.3", "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/*", "http:\/\/codeforces.com\/*" ], "js": [ "jquery-3.5.0.min.js", "content.js" ] } ], "action": { "default_icon": "icon.png" }, "background": { "service_worker": "background.js" } } |