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)是由Anonymous開發的Chrome擴展程式,該擴展的主要功能是“An automatic spelling and grammar checker for common errors in Portuguese.”。

擴展截圖

下載NG Spelling and Grammar Checker (Portuguese)擴展crx文件

下載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
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}