Solve Later Again
Append a 'Solve Later Again' table on AtCoder Problems
What is Solve Later Again?
Solve Later Again is a Chrome extension developed by taketakeyyy, and its main feature is "Append a 'Solve Later Again' table on AtCoder Problems".
Extension Screenshots
Download Solve Later Again Extension CRX File
Download Solve Later Again extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
AtCoder ProblemsのTableページに、「Solve Later Again(またあとで解く)」テーブルを追加し、解き直したい問題を管理することができるようになります。 問題の横にチェックボックスが追加されます。またあとで解きたい問題のチェックボックスに✔して、Solve Later Againテーブルに追加してください。 一度解いた問題は7日(30日)経過したらハイライトされるので、再度挑戦してください。
Extension Basic Information
Name | Solve Later Again |
ID | emndffmnlppiaelhdneheagpaancfahk |
Official URL | https://chromewebstore.google.com/detail/solve-later-again/emndffmnlppiaelhdneheagpaancfahk |
Description | Append a 'Solve Later Again' table on AtCoder Problems |
File Size | 25.05 KB |
Installation Count | 202 |
Current Version | 1.4.0 |
Last Updated | 2022-06-21 |
Publish Date | 2020-01-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | taketakeyyy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/taketakeyyy/solve-later-again |
Help Page URL | https://github.com/taketakeyyy/solve-later-again |
Supported Languages | 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\/*" ] } |