TIERIMNIDA
BOJ문제번호에 색깔을 추가해줍니다.
什么是TIERIMNIDA?
TIERIMNIDA是由bizdori01开发的Chrome扩展程序,该扩展的主要功能是“BOJ문제번호에 색깔을 추가해줍니다.”。
扩展截图
下载TIERIMNIDA扩展crx文件
下载TIERIMNIDA扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
BOJ 유저페이지 문제번호를 해당 문제의 티어색으로 칠해주는 확장 프로그램입니다. 扩展基本信息
| 名称 | |
| ID | mgdddbhbedfjdodjccjefgbdgkglokdg |
| 官方URL | https://chromewebstore.google.com/detail/tierimnida/mgdddbhbedfjdodjccjefgbdgkglokdg |
| 简介 | BOJ문제번호에 색깔을 추가해줍니다. |
| 文件大小 | 65.32 KB |
| 安装次数 | 213 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2021-11-04 |
| 上架时间 | 2021-07-19 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | bizdori01 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/mazassumnida/tierimnida |
| 支持的语言 | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TIERIMNIDA",
"description": "BOJ\ubb38\uc81c\ubc88\ud638\uc5d0 \uc0c9\uae54\uc744 \ucd94\uac00\ud574\uc90d\ub2c8\ub2e4.",
"version": "1.2.0",
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com\/; object-src 'self'",
"page_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.acmicpc.net\/user*",
"https:\/\/www.acmicpc.net\/user*"
],
"js": [
"scripts\/contentscript.js"
]
}
],
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": true
},
"permissions": [
"storage"
]
} | |