TIERIMNIDA

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

Wat is TIERIMNIDA?

TIERIMNIDA is een Chrome-extensie ontwikkeld door bizdori01, en de belangrijkste functie is "BOJ문제번호에 색깔을 추가해줍니다.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TIERIMNIDA

Download TIERIMNIDA-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 TIERIMNIDA TIERIMNIDA
ID mgdddbhbedfjdodjccjefgbdgkglokdg
Officiële URL https://chromewebstore.google.com/detail/tierimnida/mgdddbhbedfjdodjccjefgbdgkglokdg
Beschrijving BOJ문제번호에 색깔을 추가해줍니다.
Bestandsgrootte 65.32 KB
Aantal Installaties 213
Huidige Versie 1.2.0
Laatst Bijgewerkt 2021-11-04
Publicatiedatum 2021-07-19
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar bizdori01
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/mazassumnida/tierimnida
Ondersteunde Talen 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"
    ]
}