Longman Dictionary Bubble

Search a definition from Longman Dictionary of Contemporary English (5th edition)

Was ist Longman Dictionary Bubble?

Longman Dictionary Bubble ist eine Chrome-Erweiterung, die von nator333 entwickelt wurde, und ihr Hauptmerkmal ist "Search a definition from Longman Dictionary of Contemporary English (5th edition)".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Longman Dictionary Bubble-Erweiterungs-CRX-Datei herunterladen

Laden Sie Longman Dictionary Bubble-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

                        English should be learned in English. This is the suitable app for those who believe that.
This extension shows bubble type popup for the selected word's definition in Longman Dictionary.

It can show a clickable icon for the popup, or clicking a word displays the bubble immediately. This always adopts American English pronunciation rather than British pronunciation.

If you would like to comment, please leave any here (or on this Github repository (https://github.com/nator333/longman-chrome-extention)).

For your information, this extension uses Pearson Dictionary API (http://developer.pearson.com/apis/dictionaries). It was supposed to become unavailable at the end of 2017 but still available up until today (May, 2019).                    

Grundlegende Informationen zur Erweiterung

Name Longman Dictionary Bubble Longman Dictionary Bubble
ID cajklhanpcgcpkikgpcnogpdndpjdjjn
Offizielle URL https://chrome.google.com/webstore/detail/longman-dictionary-bubble/cajklhanpcgcpkikgpcnogpdndpjdjjn
Beschreibung Search a definition from Longman Dictionary of Contemporary English (5th edition)
Dateigröße 788 KB
Installationsanzahl 5,974
Aktuelle Version 1.1.1
Letztes Update 2019-07-15
Veröffentlichungsdatum 2019-07-15
Bewertung 3.88/5 Insgesamt 24 Bewertungen
Entwickler nator333
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://nakamata.tech
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Longman Dictionary Bubble",
    "short_name": "Lmd bubble",
    "description": "Search a definition from Longman Dictionary of Contemporary English (5th edition)",
    "author": "nator333",
    "version": "1.1.1",
    "icons": {
        "16": "icons\/Longman16.png",
        "48": "icons\/Longman48.png",
        "128": "icons\/Longman128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "title",
        "default_popup": "pages\/popup.html"
    },
    "options_page": "pages\/options.html",
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'"
}