Spellify

Fix spelling mistakes on any web page

Qu'est-ce que Spellify ?

Spellify est une extension Chrome développée par DHS, et sa fonction principale est "Fix spelling mistakes on any web page".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Spellify

Téléchargez les fichiers d'extension Spellify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Ever get annoyed by spelling mistakes on web pages? Well now you can fix them!

1. Highlight a spelling mistake on a web page
2. Click the Spellify browser button
3. Enter the replacement text
4. Click 'Fix it!'
5. Breathe a sigh of relief                    

Informations de Base sur l'Extension

Nom Spellify Spellify
ID khfjghgaajkhlddnnffkipoaebjnaloa
URL Officiel https://chromewebstore.google.com/detail/spellify/khfjghgaajkhlddnnffkipoaebjnaloa
Description Fix spelling mistakes on any web page
Taille du Fichier 30.28 KB
Nombre d'Installations 41
Version Actuelle 0.0.1
Dernière Mise à Jour 2015-02-08
Date de Publication 2015-02-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur DHS
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spellify",
    "short_name": "Spellify",
    "description": "Fix spelling mistakes on any web page",
    "version": "0.0.1",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "32.png",
        "default_title": "Fix a spelling mistake",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}