Cambridge Dictionary

Look up selected text in 'Cambridge Dictionary' page.

Hvad er Cambridge Dictionary?

Cambridge Dictionary er en Chrome-udvidelse udviklet af Tan Kan, og dens hovedfunktion er "Look up selected text in 'Cambridge Dictionary' page.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Cambridge Dictionary-udvidelses-CRX-fil

Download Cambridge Dictionary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Look up selected text in https://dictionary.cambridge.org, using predefined dictionary.
While in Cambridge Dictionary page, automatically focus on search box when typing.

When popup tab is closed, previous active tab will be active again.
This is very helpful if you are in middle of handful of tabs.

What's new:
Arrow keys (Up - Down) can be used to select word in suggestion pop-up.                    

Grundlæggende oplysninger om udvidelsen

Navn Cambridge Dictionary Cambridge Dictionary
ID dbiljoifjihhnghopaokjicepkcdfglo
Officiel URL https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo
Beskrivelse Look up selected text in 'Cambridge Dictionary' page.
Filstørrelse 48.39 KB
Antal Installationer 4,000
Nuværende Version 1.3
Senest Opdateret 2020-06-11
Udgivelsesdato 2020-06-11
Bedømmelse 5.00/5 Samlet 9 Bedømmelser
Udvikler Tan Kan
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cambridge Dictionary",
    "version": "1.3",
    "description": "Look up selected text in 'Cambridge Dictionary' page.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dictionary.cambridge.org\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/cambridge-icon-128.png",
        "default_title": "Cambridge Dictionary",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/cambridge-icon-128.png"
    }
}