Dictionary

Select a word on the webpage and open popup to instantly look up in the dictionary

Dictionary란 무엇입니까?

Dictionary은(는) SandeepKrSuman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select a word on the webpage and open popup to instantly look up in the dictionary"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        It is unconventional to always open a new tab to lookup for a word's meaning while you are reading your favorite blog or when you are simply browsing and you come across a word you want to know about. This extension is here to rescue. Select a word you want to look at and click on the extension button at the top and a beautiful popup will appear with the word definition and example. Isn't this cool and conventional? Install this extension and find word definitions on the go. [Open Source]                    

확장 프로그램 기본 정보

이름 Dictionary Dictionary
ID dlapopclhkmhhkmjhhaloapiiepbbnii
공식 URL https://chromewebstore.google.com/detail/dictionary/dlapopclhkmhhkmjhhaloapiiepbbnii
설명 Select a word on the webpage and open popup to instantly look up in the dictionary
파일 크기 289 KB
설치 횟수 17
현재 버전 1.2.1
최근 업데이트 2023-07-23
출시 날짜 2021-08-24
평점 5.00/5 총 1 개의 평점
개발자 SandeepKrSuman
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/SandeepKrSuman/dictionary-extension
도움말 페이지 URL https://github.com/SandeepKrSuman/dictionary-extension/issues
개인정보 보호 정책 페이지 URL https://github.com/SandeepKrSuman/dictionary-extension/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary",
    "version": "1.2.1",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_title": "Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Select a word on the webpage and open popup to instantly look up in the dictionary",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "SandeepKrSuman",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}