Dictionary Search (Dictionary.com/Youglish)

Provides floating buttons for a quick search on word pronunciation on multiple websites.

Was ist Dictionary Search (Dictionary.com/Youglish)?

Dictionary Search (Dictionary.com/Youglish) ist eine Chrome-Erweiterung, die von Leon entwickelt wurde, und ihr Hauptmerkmal ist "Provides floating buttons for a quick search on word pronunciation on multiple websites.".

Erweiterungsscreenshots

screenshot
screenshot

Dictionary Search (Dictionary.com/Youglish)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dictionary Search (Dictionary.com/Youglish)-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

                        Currently supporting:
1. Dictionary.com
2. Cambridge Dictionary
3. Youglish
4. Howjsay

Open sourced on Github: https://github.com/leonwongdev/pronunciation-ext

Change log:
v1.0.4:
- Used website icons as buttons to reduce the menu size.                    

Grundlegende Informationen zur Erweiterung

Name Dictionary Search (Dictionary.com/Youglish) Dictionary Search (Dictionary.com/Youglish)
ID clhkbghopdclagfplhknlhcpnjefpacd
Offizielle URL https://chromewebstore.google.com/detail/dictionary-search-diction/clhkbghopdclagfplhknlhcpnjefpacd
Beschreibung Provides floating buttons for a quick search on word pronunciation on multiple websites.
Dateigröße 18.62 KB
Installationsanzahl 44
Aktuelle Version 1.0.4
Letztes Update 2024-02-06
Veröffentlichungsdatum 2023-09-04
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler Leon
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/leonwongprsn/pronunciation-ext
Hilfeseite URL https://github.com/leonwongdev/pronunciation-ext/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dictionary Search (Dictionary.com\/Youglish)",
    "version": "1.0.4",
    "description": "Provides floating buttons for a quick search on word pronunciation on multiple websites.",
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 3,
    "author": "Leon",
    "icons": {
        "16": "research-16.png",
        "48": "research-48.png",
        "128": "research-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Dictionary Search (Dictionary.com\/Youglish)"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/brandyg.png",
                "images\/cam-dict.jpeg",
                "images\/dict-com.png",
                "images\/howjsay.png"
            ]
        }
    ]
}