TIERIMNIDA

BOJ문제번호에 색깔을 추가해줍니다.

TIERIMNIDA란 무엇입니까?

TIERIMNIDA은(는) bizdori01에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "BOJ문제번호에 색깔을 추가해줍니다."입니다.

확장 프로그램 스크린샷

screenshot

TIERIMNIDA 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        BOJ 유저페이지 문제번호를 해당 문제의 티어색으로 칠해주는 확장 프로그램입니다.                    

확장 프로그램 기본 정보

이름 TIERIMNIDA TIERIMNIDA
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"
    ]
}