Solve Later Again
Append a 'Solve Later Again' table on AtCoder Problems
Solve Later Againとは何ですか?
Solve Later Againはtaketakeyyyによって開発されたChromeの拡張機能で、その主な機能は「Append a 'Solve Later Again' table on AtCoder Problems」です。
拡張機能のスクリーンショット
Solve Later Again拡張機能のCRXファイルをダウンロード
Solve Later Again拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
AtCoder ProblemsのTableページに、「Solve Later Again(またあとで解く)」テーブルを追加し、解き直したい問題を管理することができるようになります。
問題の横にチェックボックスが追加されます。またあとで解きたい問題のチェックボックスに✔して、Solve Later Againテーブルに追加してください。
一度解いた問題は7日(30日)経過したらハイライトされるので、再度挑戦してください。 拡張機能の基本情報
| 名前 | |
| ID | emndffmnlppiaelhdneheagpaancfahk |
| 公式URL | https://chromewebstore.google.com/detail/solve-later-again/emndffmnlppiaelhdneheagpaancfahk |
| 説明 | Append a 'Solve Later Again' table on AtCoder Problems |
| ファイルサイズ | 25.05 KB |
| インストール数 | 202 |
| 現在のバージョン | 1.4.0 |
| 最終更新日 | 2022-06-21 |
| 公開日 | 2020-01-08 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | taketakeyyy |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/taketakeyyy/solve-later-again |
| ヘルプページのURL | https://github.com/taketakeyyy/solve-later-again |
| 対応言語 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Solve Later Again",
"short_name": "SLA",
"version": "1.4.0",
"author": "taketakeyyy",
"description": "Append a 'Solve Later Again' table on AtCoder Problems",
"icons": {
"16": "icon\/icon_16x16.png",
"32": "icon\/icon_32x32.png",
"48": "icon\/icon_48x48.png",
"128": "icon\/icon_128x128.png"
},
"action": {
"default_title": "Solve Later Again",
"default_icon": {
"19": "icon\/icon_19x19.png",
"38": "icon\/icon_38x38.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/kenkoooo.com\/atcoder\/*"
],
"js": [
"bin\/content_scripts.js"
]
}
],
"background": {
"service_worker": "bin\/background.js"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"https:\/\/kenkoooo.com\/atcoder\/*"
]
} | |