Dictionary

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

Was ist Dictionary?

Dictionary ist eine Chrome-Erweiterung, die von SandeepKrSuman entwickelt wurde, und ihr Hauptmerkmal ist "Select a word on the webpage and open popup to instantly look up in the dictionary".

Erweiterungsscreenshots

screenshot
screenshot

Dictionary-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dictionary-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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]                    

Grundlegende Informationen zur Erweiterung

Name Dictionary Dictionary
ID dlapopclhkmhhkmjhhaloapiiepbbnii
Offizielle URL https://chromewebstore.google.com/detail/dictionary/dlapopclhkmhhkmjhhaloapiiepbbnii
Beschreibung Select a word on the webpage and open popup to instantly look up in the dictionary
Dateigröße 289 KB
Installationsanzahl 17
Aktuelle Version 1.2.1
Letztes Update 2023-07-23
Veröffentlichungsdatum 2021-08-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler SandeepKrSuman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/SandeepKrSuman/dictionary-extension
Hilfeseite URL https://github.com/SandeepKrSuman/dictionary-extension/issues
URL der Datenschutzrichtlinien-Seite https://github.com/SandeepKrSuman/dictionary-extension/blob/master/PRIVACY.md
Unterstützte Sprachen 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"
    ]
}