Upword

Increase your vocabulary with this simple extension

Hvad er Upword?

Upword er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Increase your vocabulary with this simple extension".

Udvidelsesskærmbilleder

Download Upword-udvidelses-CRX-fil

Download Upword-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

                        Upword is a Chrome Extension for Gmail that allows user to quickly replace words with their synonyms. Upword can also be configured using a hotkey (in development).                    

Grundlæggende oplysninger om udvidelsen

Navn Upword Upword
ID caccnpmojcgaglgnmbchfodecmfkcjkl
Officiel URL https://chromewebstore.google.com/detail/upword/caccnpmojcgaglgnmbchfodecmfkcjkl
Beskrivelse Increase your vocabulary with this simple extension
Filstørrelse 885 KB
Antal Installationer 110
Nuværende Version 0.1.0.1
Senest Opdateret 2017-03-14
Udgivelsesdato 2017-03-14
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Udvidelseswebsted https://github.com/winstonjz/Upword
Hjælpeside-URL https://github.com/winstonjz/Upword
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Upword",
    "description": "Increase your vocabulary with this simple extension",
    "version": "0.1.0.1",
    "background": {
        "scripts": [
            ".\/event\/event.js"
        ]
    },
    "browser_action": {
        "default_title": "Upword",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                ".\/content\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "docs\/icons\/16.png",
        "48": "docs\/icons\/48.png",
        "128": "docs\/icons\/128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "*:\/\/mail.google.com\/*",
        "storage",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/",
        "contextMenus"
    ]
}