Grammar Checker

Rozšírenie pre kontrolu a opravu slovenského textu

Was ist Grammar Checker?

Grammar Checker ist eine Chrome-Erweiterung, die von martindzik entwickelt wurde, und ihr Hauptmerkmal ist "Rozšírenie pre kontrolu a opravu slovenského textu".

Erweiterungsscreenshots

screenshot

Grammar Checker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Grammar Checker-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

                        Rozšírenie umožňuje kontrolu a opravu slovenského textu. Ponúka 2 spôsoby opravy - pomocou ponuky návrhov a automatickú opavu textu. Použitie je vhodné najmä pri písaní emailov alebo príspevkov na webových stránkach. Môžete písať bez chýb aj keď neovládate gramatiku. Pomocou tohto rozšírenia opravíte väčšinu chýb, prípadne preklepov. Navyše má jednoduché a intuitívne používateľské rozhranie.                    

Grundlegende Informationen zur Erweiterung

Name Grammar Checker Grammar Checker
ID ilgkmlhecpcpmijooniknodkaoogofbd
Offizielle URL https://chrome.google.com/webstore/detail/grammar-checker/ilgkmlhecpcpmijooniknodkaoogofbd
Beschreibung Rozšírenie pre kontrolu a opravu slovenského textu
Dateigröße 38.48 KB
Installationsanzahl 16
Aktuelle Version 1.0.4
Letztes Update 2017-06-20
Veröffentlichungsdatum 2017-06-20
Entwickler martindzik
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen sk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grammar Checker",
    "description": "Roz\u0161\u00edrenie pre kontrolu a opravu slovensk\u00e9ho textu",
    "version": "1.0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "about.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "checktext.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus"
    ]
}