Solve Later Again
Append a 'Solve Later Again' table on AtCoder Problems
Cos'è Solve Later Again?
Solve Later Again è un'estensione di Chrome sviluppata da taketakeyyy, e la sua funzione principale è "Append a 'Solve Later Again' table on AtCoder Problems".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Solve Later Again
Scarica i file di estensione Solve Later Again in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
AtCoder ProblemsのTableページに、「Solve Later Again(またあとで解く)」テーブルを追加し、解き直したい問題を管理することができるようになります。
問題の横にチェックボックスが追加されます。またあとで解きたい問題のチェックボックスに✔して、Solve Later Againテーブルに追加してください。
一度解いた問題は7日(30日)経過したらハイライトされるので、再度挑戦してください。 Informazioni di Base sull'Estensione
| Nome | |
| ID | emndffmnlppiaelhdneheagpaancfahk |
| URL Ufficiale | https://chromewebstore.google.com/detail/solve-later-again/emndffmnlppiaelhdneheagpaancfahk |
| Descrizione | Append a 'Solve Later Again' table on AtCoder Problems |
| Dimensione del File | 25.05 KB |
| Conteggio Installazioni | 202 |
| Versione Corrente | 1.4.0 |
| Ultimo Aggiornamento | 2022-06-21 |
| Data di Pubblicazione | 2020-01-08 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | taketakeyyy |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/taketakeyyy/solve-later-again |
| URL della Pagina di Aiuto | https://github.com/taketakeyyy/solve-later-again |
| Lingue Supportate | 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\/*"
]
} | |