My Dictionary

Get definition or translation of the selected word(s) in popup (multiple choices)

My Dictionary란 무엇입니까?

My Dictionary은(는) HardeepTheDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get definition or translation of the selected word(s) in popup (multiple choices)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

My Dictionary 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NOTE: A new and improved extension is available.

https://chrome.google.com/webstore/detail/lookup-in-popup/akaefbhdlppmfdecoakjogglbjgacdhm


Get definition or translation of selected words in popup, you can choose from multiple dictionaries, add new dictionaries, add websites that are not dictionaries, for more information watch the demo video https://youtu.be/kOOT5MK76UM

Default shortcut: 
- Alt+m on Windows
- Option+m on Mac

Github: https://github.com/harry-private/my_dictionary

CHANGELOG

https://github.com/harry-private/my_dictionary/blob/master/CHANGELOG.md                    

확장 프로그램 기본 정보

이름 My Dictionary My Dictionary
ID dlmmgckeognpojabkkcablldnlfnfgpo
공식 URL https://chromewebstore.google.com/detail/my-dictionary/dlmmgckeognpojabkkcablldnlfnfgpo
설명 Get definition or translation of the selected word(s) in popup (multiple choices)
파일 크기 108 KB
설치 횟수 817
현재 버전 1.0.01
최근 업데이트 2021-03-09
출시 날짜 2020-06-20
평점 4.38/5 총 13 개의 평점
개발자 HardeepTheDev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/harry-private/my_dictionary
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Dictionary",
    "description": "Get definition or translation of the selected word(s) in popup (multiple choices)",
    "version": "1.0.01",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "data\/internal_libs\/dictionaries_data.js",
            "data\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "data\/icons\/icon16.png",
        "default_title": "My Dictionary",
        "default_popup": "data\/options\/dictionary_for_menu_bar\/dictionary_for_menu_bar.html"
    },
    "options_ui": {
        "page": "data\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "data\/icons\/icon16.png",
        "48": "data\/icons\/icon48.png",
        "128": "data\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        "data\/icons\/icon_original.png",
        "data\/iframe\/iframe.html",
        "data\/icons\/loading.gif"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/content_scripts\/index.js"
            ],
            "css": [
                "data\/content_scripts\/index.css"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Activate the extension"
        }
    }
}