DICTIONARY-개발용어사전

개발자를 위한 용어사전

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

DICTIONARY-개발용어사전是由jiwon3346開發的Chrome擴展程式,該擴展的主要功能是“개발자를 위한 용어사전”。

擴展截圖

screenshot

下載DICTIONARY-개발용어사전擴展crx文件

下載DICTIONARY-개발용어사전擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 DICTIONARY-개발용어사전 DICTIONARY-개발용어사전
ID lkiddmdljaphabbegmnbocakpolanjdh
官方網址 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'"
}