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ファイルをダウンロード

Dictionary拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}