TIERIMNIDA
BOJ문제번호에 색깔을 추가해줍니다.
What is TIERIMNIDA?
TIERIMNIDA is a Chrome extension developed by bizdori01, and its main feature is "BOJ문제번호에 색깔을 추가해줍니다.".
Extension Screenshots
Download TIERIMNIDA Extension CRX File
Download TIERIMNIDA 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
BOJ 유저페이지 문제번호를 해당 문제의 티어색으로 칠해주는 확장 프로그램입니다.
Extension Basic Information
Name | TIERIMNIDA |
ID | mgdddbhbedfjdodjccjefgbdgkglokdg |
Official URL | https://chromewebstore.google.com/detail/tierimnida/mgdddbhbedfjdodjccjefgbdgkglokdg |
Description | BOJ문제번호에 색깔을 추가해줍니다. |
File Size | 65.32 KB |
Installation Count | 213 |
Current Version | 1.2.0 |
Last Updated | 2021-11-04 |
Publish Date | 2021-07-19 |
Rating | 5.00/5 Total 5 Ratings |
Developer | bizdori01 |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/mazassumnida/tierimnida |
Supported Languages | 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" ] } |