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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
** 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) |
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": [ "*:\/\/*\/*" ] } ] } |