DICTIONARY-개발용어사전

개발자를 위한 용어사전

Qu'est-ce que DICTIONARY-개발용어사전 ?

DICTIONARY-개발용어사전 est une extension Chrome développée par jiwon3346, et sa fonction principale est "개발자를 위한 용어사전".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension DICTIONARY-개발용어사전

Téléchargez les fichiers d'extension DICTIONARY-개발용어사전 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

                        영어로 된 개발용어들을 한국어로 쉽게 풀어내어 영문으로된 개발문서 학습에 도움을 줍니다.                    

Informations de Base sur l'Extension

Nom DICTIONARY-개발용어사전 DICTIONARY-개발용어사전
ID lkiddmdljaphabbegmnbocakpolanjdh
URL Officiel https://chromewebstore.google.com/detail/dictionary-%EA%B0%9C%EB%B0%9C%EC%9A%A9%EC%96%B4%EC%82%AC%EC%A0%84/lkiddmdljaphabbegmnbocakpolanjdh
Description 개발자를 위한 용어사전
Taille du Fichier 166 KB
Nombre d'Installations 63
Version Actuelle 1.0.3
Dernière Mise à Jour 2021-03-03
Date de Publication 2021-01-27
Développeur jiwon3346
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/meotitda/DICTIONARY
Langues Prises en Charge ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DICTIONARY-\uac1c\ubc1c\uc6a9\uc5b4\uc0ac\uc804",
    "description": "\uac1c\ubc1c\uc790\ub97c \uc704\ud55c \uc6a9\uc5b4\uc0ac\uc804",
    "version": "1.0.3",
    "browser_action": {
        "default_title": "DICTIONARY",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/favicon-16x16.png",
            "32": "images\/favicon-32x32.png",
            "48": "images\/favicon-48x48.png",
            "128": "images\/favicon-128x128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery.min.js",
            "xregexp-all.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "jquery.min.js",
                "contentscript.js",
                "xregexp-all.js"
            ]
        }
    ],
    "manifest_version": 2,
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle feature foo"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "windows": "Alt+Shift+S",
                "mac": "Command+Shift+S"
            }
        }
    },
    "permissions": [
        "storage",
        "https:\/\/jgxre5pvmj.execute-api.ap-northeast-2.amazonaws.com\/default\/*"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/clients5.google.com; object-src 'self'"
}