TIERIMNIDA

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

Qu'est-ce que TIERIMNIDA ?

TIERIMNIDA est une extension Chrome développée par bizdori01, et sa fonction principale est "BOJ문제번호에 색깔을 추가해줍니다.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TIERIMNIDA

Téléchargez les fichiers d'extension TIERIMNIDA au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom TIERIMNIDA TIERIMNIDA
ID mgdddbhbedfjdodjccjefgbdgkglokdg
URL Officiel https://chromewebstore.google.com/detail/tierimnida/mgdddbhbedfjdodjccjefgbdgkglokdg
Description BOJ문제번호에 색깔을 추가해줍니다.
Taille du Fichier 65.32 KB
Nombre d'Installations 213
Version Actuelle 1.2.0
Dernière Mise à Jour 2021-11-04
Date de Publication 2021-07-19
Évaluation 5.00/5 Total 5 Évaluations
Développeur bizdori01
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/mazassumnida/tierimnida
Langues Prises en Charge 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"
    ]
}