NG Spelling and Grammar Checker (Portuguese)

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

NG Spelling and Grammar Checker (Portuguese)คืออะไร?

NG Spelling and Grammar Checker (Portuguese) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anonymous และคุณลักษณะหลักของมันคือ "An automatic spelling and grammar checker for common errors in Portuguese."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NG Spelling and Grammar Checker (Portuguese)

ดาวน์โหลดไฟล์ส่วนขยาย NG Spelling and Grammar Checker (Portuguese) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NG Spelling and Grammar Checker (Portuguese) NG Spelling and Grammar Checker (Portuguese)
ID pbpnngfnagmdlicfgjkpgfnnnoihngml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ng-spelling-and-grammar-c/pbpnngfnagmdlicfgjkpgfnnnoihngml
คำอธิบาย An automatic spelling and grammar checker for common errors in Portuguese.
ขนาดไฟล์ 1.25 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2023-08-25
วันที่เผยแพร่ 2019-06-19
คะแนน 3.71/5 รวมทั้งหมด 82 คะแนน
ผู้พัฒนา Anonymous
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}