Upword

Increase your vocabulary with this simple extension

Co to jest Upword?

Upword to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Increase your vocabulary with this simple extension”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Upword

Pobierz pliki rozszerzeń Upword w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Upword Upword
ID caccnpmojcgaglgnmbchfodecmfkcjkl
Oficjalny URL https://chromewebstore.google.com/detail/upword/caccnpmojcgaglgnmbchfodecmfkcjkl
Opis Increase your vocabulary with this simple extension
Rozmiar pliku 885 KB
Liczba instalacji 110
Aktualna Wersja 0.1.0.1
Ostatnia Aktualizacja 2017-03-14
Data Publikacji 2017-03-14
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/winstonjz/Upword
Adres URL Strony Pomocy https://github.com/winstonjz/Upword
Obsługiwane Języki 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"
    ]
}