Wordzit Extension

Translates words you don't know, enables you to save them, highlights the ones you're learning

Τι είναι το Wordzit Extension;

Το Wordzit Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://wordzit.com, και η κύρια λειτουργία του είναι "Translates words you don't know, enables you to save them, highlights the ones you're learning".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Wordzit Extension

Λήψη αρχείων επέκτασης Wordzit Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        IMPORTANT:
 - The extension 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!
 - you have to be logged in Wordzit.com to use the extension
 - 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.
 - the extension does not detect selection in PDF: click on the extension button in your toolbar to make it appear or disappear on PDF pages.


When you are on a webpage in a language you are learning on Wordzit, double clicking a word or selecting one will trigger the extension and give you its translations. Click on the "+" beside a translation to save it to your profile. The extension will highlight the one you are already learning on Wordzit. When you hover a word you are learning, it will retrieve you its translation.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Wordzit Extension Wordzit Extension
ID cebibanmknaapcjibpjaboejoglfajgn
Επίσημο URL https://chrome.google.com/webstore/detail/wordzit-extension/cebibanmknaapcjibpjaboejoglfajgn
Περιγραφή Translates words you don't know, enables you to save them, highlights the ones you're learning
Μέγεθος Αρχείου 83.55 KB
Αριθμός Εγκαταστάσεων 155
Τρέχουσα Έκδοση 1.23
Τελευταία Ενημέρωση 2016-01-19
Ημερομηνία Δημοσίευσης 2016-01-19
Αξιολόγηση 5.00/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής http://wordzit.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordzit Extension",
    "description": "Translates words you don't know, enables you to save them, highlights the ones you're learning",
    "icons": {
        "16": "icon16_grey.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.23",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "background",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tts"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icon16_grey.png",
        "icon16.png",
        "parameters.svg",
        "x.svg",
        "arrow.svg",
        "arrow_down.svg",
        "sound.svg"
    ],
    "browser_action": {
        "default_title": "Translate with Wordzit",
        "default_icon": "icon16_grey.png"
    },
    "manifest_version": 2
}