NG Spelling and Grammar Checker (Portuguese)

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

NG Spelling and Grammar Checker (Portuguese) là gì?

NG Spelling and Grammar Checker (Portuguese) là một tiện ích mở rộng Chrome được phát triển bởi Anonymous, và tính năng chính của nó là "An automatic spelling and grammar checker for common errors in Portuguese.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng NG Spelling and Grammar Checker (Portuguese)

Tải xuống các tệp mở rộng NG Spelling and Grammar Checker (Portuguese) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NG Spelling and Grammar Checker (Portuguese) NG Spelling and Grammar Checker (Portuguese)
ID pbpnngfnagmdlicfgjkpgfnnnoihngml
URL Chính Thức https://chromewebstore.google.com/detail/ng-spelling-and-grammar-c/pbpnngfnagmdlicfgjkpgfnnnoihngml
Mô tả An automatic spelling and grammar checker for common errors in Portuguese.
Kích Thước Tệp 1.25 MB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2023-08-25
Ngày Phát Hành 2019-06-19
Đánh Giá 3.71/5 Tổng số 82 Đánh Giá
Nhà Phát Triển Anonymous
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}