DICTIONARY-개발용어사전

개발자를 위한 용어사전

DICTIONARY-개발용어사전란 무엇입니까?

DICTIONARY-개발용어사전은(는) jiwon3346에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "개발자를 위한 용어사전"입니다.

확장 프로그램 스크린샷

screenshot

DICTIONARY-개발용어사전 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 DICTIONARY-개발용어사전 DICTIONARY-개발용어사전
ID lkiddmdljaphabbegmnbocakpolanjdh
공식 URL 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
설명 개발자를 위한 용어사전
파일 크기 166 KB
설치 횟수 63
현재 버전 1.0.3
최근 업데이트 2021-03-03
출시 날짜 2021-01-27
개발자 jiwon3346
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/meotitda/DICTIONARY
지원되는 언어 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'"
}