백준 알람(BOJ Alarm)
채점이 완료되면 알림을 띄워줘요!
백준 알람(BOJ Alarm)とは何ですか?
백준 알람(BOJ Alarm)は1217jdkによって開発されたChromeの拡張機能で、その主な機能は「채점이 완료되면 알림을 띄워줘요!」です。
拡張機能のスクリーンショット
백준 알람(BOJ Alarm)拡張機能のCRXファイルをダウンロード
백준 알람(BOJ Alarm)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
백준(BOJ) 사이트에서, 채점이 완료되면 알람을 띄워주는 크롬 확장 프로그램 입니다.
채점이 완료되면 즉시 사용자에게 알람을 띄워줍니다. 채점 중 다른 페이지로 이동하여도 알람이 울립니다.
알람 내용은 채점 결과, 문제 번호가 포함됩니다. 여러 개의 채점이 진행 중일 때 각각의 제출에 대하여 알람이 울립니다.
※ 주의사항
- 데스크탑 알람을 켜야 프로그램이 정상적으로 동작합니다.
- 크롬을 종료하면 알람이 울리지 않습니다. 拡張機能の基本情報
| 名前 | |
| ID | piedmchdfegdhgedliponahpdaniompb |
| 公式URL | https://chromewebstore.google.com/detail/%EB%B0%B1%EC%A4%80-%EC%95%8C%EB%9E%8Cboj-alarm/piedmchdfegdhgedliponahpdaniompb |
| 説明 | 채점이 완료되면 알림을 띄워줘요! |
| ファイルサイズ | 33.54 KB |
| インストール数 | 45 |
| 現在のバージョン | 1.0.3 |
| 最終更新日 | 2022-12-03 |
| 公開日 | 2022-06-17 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | 1217jdk |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/sawol/Baekjoon-Alarm |
| 対応言語 | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "\ubc31\uc900 \uc54c\ub78c(BOJ Alarm)",
"description": "\ucc44\uc810\uc774 \uc644\ub8cc\ub418\uba74 \uc54c\ub9bc\uc744 \ub744\uc6cc\uc918\uc694!",
"version": "1.0.3",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/www.acmicpc.net\/submit\/*"
],
"js": [
"flag-change.js"
]
},
{
"matches": [
"https:\/\/www.acmicpc.net\/status?*"
],
"js": [
"get-data-script.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"notifications"
],
"icons": {
"16": "\/icon.png",
"32": "\/icon.png",
"48": "\/icon.png",
"128": "\/icon.png"
}
} | |