배추
BOJ 대회의 뱃지 및 배경 정보를 알려줍니다!
Wat is 배추?
배추 is een Chrome-extensie ontwikkeld door kiwiyou.dev, en de belangrijkste functie is "BOJ 대회의 뱃지 및 배경 정보를 알려줍니다!".
Extensie Screenshots
Download het CRX-bestand van de extensie 배추
Download 배추-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
BOJ 대회 목록과 대회 페이지에서 뱃지 및 배경 정보를 띄워줍니다.
Basisinformatie over de Extensie
Naam | 배추 |
ID | obfbkgfedgjekgmofdckdldmkggbddgp |
Officiële URL | https://chromewebstore.google.com/detail/%EB%B0%B0%EC%B6%94/obfbkgfedgjekgmofdckdldmkggbddgp |
Beschrijving | BOJ 대회의 뱃지 및 배경 정보를 알려줍니다! |
Bestandsgrootte | 47.47 KB |
Aantal Installaties | 184 |
Huidige Versie | 0.1.2 |
Laatst Bijgewerkt | 2024-01-16 |
Publicatiedatum | 2024-01-14 |
Ontwikkelaar | kiwiyou.dev |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "0.1.2", "short_name": "__MSG_appShortName__", "manifest_version": 3, "default_locale": "ko", "icons": { "16": "images\/16.png", "32": "images\/32.png", "64": "images\/64.png", "128": "images\/128.png", "144": "images\/144.png", "192": "images\/192.png", "256": "images\/256.png" }, "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.acmicpc.net\/contest\/official\/list*" ], "js": [ "scripts\/contests.js" ], "css": [ "styles\/label.css" ], "run_at": "document_idle", "all_frames": false }, { "matches": [ "https:\/\/www.acmicpc.net\/contest\/view\/*" ], "js": [ "scripts\/contest.js" ], "css": [ "styles\/contest.css", "styles\/label.css" ], "run_at": "document_idle", "all_frames": false } ], "host_permissions": [ "https:\/\/raw.githubusercontent.com\/kiwiyou\/baechu\/*" ] } |