NG Spelling and Grammar Checker (Portuguese)

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

Apa itu NG Spelling and Grammar Checker (Portuguese)?

NG Spelling and Grammar Checker (Portuguese) adalah ekstensi Chrome yang dikembangkan oleh Anonymous, dan fitur utamanya adalah "An automatic spelling and grammar checker for common errors in Portuguese.".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi NG Spelling and Grammar Checker (Portuguese)

Unduh file ekstensi NG Spelling and Grammar Checker (Portuguese) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        ** 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.                    

Informasi Dasar Ekstensi

Nama NG Spelling and Grammar Checker (Portuguese) NG Spelling and Grammar Checker (Portuguese)
ID pbpnngfnagmdlicfgjkpgfnnnoihngml
URL Resmi https://chromewebstore.google.com/detail/ng-spelling-and-grammar-c/pbpnngfnagmdlicfgjkpgfnnnoihngml
Deskripsi An automatic spelling and grammar checker for common errors in Portuguese.
Ukuran File 1.25 MB
Jumlah Instalasi 10,000
Versi Saat Ini 1.5
Terakhir Diperbarui 2023-08-25
Tanggal Publikasi 2019-06-19
Penilaian 3.71/5 Total 82 Penilaian
Pengembang Anonymous
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}