DICTIONARY-개발용어사전

개발자를 위한 용어사전

什么是DICTIONARY-개발용어사전?

DICTIONARY-개발용어사전是由jiwon3346开发的Chrome扩展程序,该扩展的主要功能是“개발자를 위한 용어사전”。

扩展截图

screenshot

下载DICTIONARY-개발용어사전扩展crx文件

下载DICTIONARY-개발용어사전扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 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'"
}