Google Dictionary (by Google)

View definitions easily as you browse the web.

Vad är Google Dictionary (by Google)?

Google Dictionary (by Google) är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "View definitions easily as you browse the web.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Google Dictionary (by Google)-förlängningens CRX-fil

Ladda ner Google Dictionary (by Google)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        IMPORTANT:
 - The pop-up bubble will not work in tabs that were open prior to installation. After installing this extension, either reload your open tabs or restart Chrome.
 - Note that all extensions are disabled on Chrome Web Store pages (including this one). Do not test the extension on this page; it will not work!
 - If the extension is not working for you, please make sure it's up to date. Visit chrome://extensions/, click the "Update extensions now" button, then restart Chrome.

----------

With this extension, you can:
1) Double-click any word to view its definition in a small pop-up bubble.
2) View the complete definition of any word or phrase using the toolbar dictionary.
3) Store a history of words you've looked up, so you can practice them later.

Foreign words are automatically translated to your language of choice.

Supported dictionaries:
 - Arabic
 - Brazilian Portuguese
 - Chinese (Simplified)
 - Chinese (Traditional)
 - Czech
 - Dutch
 - English (UK)
 - English (US)
 - French
 - German
 - Hindi
 - Italian
 - Japanese
 - Korean
 - Russian
 - Slovak
 - Spanish
 - Turkish

If you opt in (via the options page), this extension will store a history of all your looked-up words and their definitions. You can download this history as a CSV file at any time. In addition, you can allow other Chrome extensions to access this history. For example, a third-party extension could produce flashcards to help you practice words you've looked up before.

By installing this extension, you agree to the Terms of Service: https://www.google.com/policies/terms

Having problems with this extension? If the suggestions above didn't work, please fill out a problem report: https://chrome.google.com/webstore/support/mgijmajocgfcbeboacabfgobmjgjcoja                    

Grundläggande Information om Tillägg

Namn Google Dictionary (by Google) Google Dictionary (by Google)
ID mgijmajocgfcbeboacabfgobmjgjcoja
Officiell webbadress https://chromewebstore.google.com/detail/google-dictionary-by-goog/mgijmajocgfcbeboacabfgobmjgjcoja
Beskrivning View definitions easily as you browse the web.
Filstorlek 46.1 KB
Antal Installationer 5,000,000
Aktuell Version 4.1.8
Senast Uppdaterad 2021-09-28
Publiceringsdatum 2020-04-16
Betyg 4.36/5 Totalt 13678 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Dictionary (by Google)",
    "version": "4.1.8",
    "description": "View definitions easily as you browse the web.",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "content.min.css"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.min.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "static\/icon19.png",
        "default_title": "Google Dictionary",
        "default_popup": "browser_action.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png",
        "128": "static\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/clients5.google.com https:\/\/apis.google.com https:\/\/cdnjs.cloudflare.com; object-src 'self'"
}