NG Spelling and Grammar Checker (Portuguese)

An automatic spelling and grammar checker for common errors in Portuguese.

Was ist NG Spelling and Grammar Checker (Portuguese)?

NG Spelling and Grammar Checker (Portuguese) ist eine Chrome-Erweiterung, die von Anonymous entwickelt wurde, und ihr Hauptmerkmal ist "An automatic spelling and grammar checker for common errors in Portuguese.".

Erweiterungsscreenshots

NG Spelling and Grammar Checker (Portuguese)-Erweiterungs-CRX-Datei herunterladen

Laden Sie NG Spelling and Grammar Checker (Portuguese)-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

                        ** PORTUGUESE ONLY **

This extension will automatically correct common spelling and grammar mistakes in Portuguese as you type!

Features:
- Corrects common spelling and grammar mistakes, accentuation and capitalisation as you write.
- You can undo a correction with ctrl+z.
- Expands abbreviations.
- Custom replacements.
- Disable in certain sites.
- Ignores quoted words.
- European and Brazilian Portuguese, before and after orthographic reform.                    

Grundlegende Informationen zur Erweiterung

Name NG Spelling and Grammar Checker (Portuguese) NG Spelling and Grammar Checker (Portuguese)
ID pbpnngfnagmdlicfgjkpgfnnnoihngml
Offizielle URL https://chromewebstore.google.com/detail/ng-spelling-and-grammar-c/pbpnngfnagmdlicfgjkpgfnnnoihngml
Beschreibung An automatic spelling and grammar checker for common errors in Portuguese.
Dateigröße 1.25 MB
Installationsanzahl 10,000
Aktuelle Version 1.5
Letztes Update 2023-08-25
Veröffentlichungsdatum 2019-06-19
Bewertung 3.71/5 Insgesamt 82 Bewertungen
Entwickler Anonymous
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,pt-BR,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "1.5",
    "default_locale": "pt_PT",
    "description": "__MSG_appDesc__",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "check.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "background": {
        "service_worker": "bg.js"
    },
    "permissions": [
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "128": "icon128.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pt.dic"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}