Upword

Increase your vocabulary with this simple extension

Was ist Upword?

Upword ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Increase your vocabulary with this simple extension".

Erweiterungsscreenshots

Upword-Erweiterungs-CRX-Datei herunterladen

Laden Sie Upword-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

                        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).                    

Grundlegende Informationen zur Erweiterung

Name Upword Upword
ID caccnpmojcgaglgnmbchfodecmfkcjkl
Offizielle URL https://chromewebstore.google.com/detail/upword/caccnpmojcgaglgnmbchfodecmfkcjkl
Beschreibung Increase your vocabulary with this simple extension
Dateigröße 885 KB
Installationsanzahl 110
Aktuelle Version 0.1.0.1
Letztes Update 2017-03-14
Veröffentlichungsdatum 2017-03-14
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/winstonjz/Upword
Hilfeseite URL https://github.com/winstonjz/Upword
Unterstützte Sprachen 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"
    ]
}