SPED Tooltips and Dictionary

Provides tooltips and definitions for Special Education terms

Τι είναι το SPED Tooltips and Dictionary;

Το SPED Tooltips and Dictionary είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://spedadvocate.com, και η κύρια λειτουργία του είναι "Provides tooltips and definitions for Special Education terms".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SPED Tooltips and Dictionary

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

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

                        This extension provides both tooltips and full definitions for terms used in special education. The tooltips are fast and brief, a sentence or two. The dictionary definitions give a full definition and, where appropriate, offer the legal authority (e.g., "IDEA 34 CFR §300.320"), synonyms, use in a sentence, and more. 

To activate the tooltips for any page, click the extension's icon and all of the appropriate words and terms will have a dotted underline. Hover the mouse over the word and the tooltip will show.

To look up the word or phrase in the dictionary, highlight the word or phrase (double-click on a word or swipe the cursor over the word(s), while holding the left mouse button down). Once highlighted, right-click and chose "DEFINE highlighted word or phrase" ... much simpler than it sounds.

You can use both at the same time. Showing the tooltips will also let you know what words are in the dictionary, they use the same database. The database will be updated very often at first so make sure you are using the latest version. 

And feedback is always welcomed.                    

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

Όνομα SPED Tooltips and Dictionary SPED Tooltips and Dictionary
ID hodplebdfgigmlhikhpefijgjokcmkmk
Επίσημο URL https://chromewebstore.google.com/detail/sped-tooltips-and-diction/hodplebdfgigmlhikhpefijgjokcmkmk
Περιγραφή Provides tooltips and definitions for Special Education terms
Μέγεθος Αρχείου 66.22 KB
Αριθμός Εγκαταστάσεων 61
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2017-08-27
Ημερομηνία Δημοσίευσης 2017-08-27
Προγραμματιστής https://spedadvocate.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://spedadvocate.com
Διεύθυνση URL της Σελίδας Βοήθειας http://spedadvocate.com/contact/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SPED Tooltips and Dictionary",
    "short_name": "SPED T&D",
    "version": "0.2",
    "description": "Provides tooltips and definitions for Special Education terms",
    "author": "Craig A. Haller",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "FindAndReplaceDOMText.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Click icon to enable tooltips and\/or highlight text and right-click to DEFINE"
    },
    "web_accessible_resources": [
        "img\/external.png"
    ]
}