textlint: Proofreader

Proofread your texts as you type based on textlint rules!

textlint: Proofreaderคืออะไร?

textlint: Proofreader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย IRIDE Monad และคุณลักษณะหลักของมันคือ "Proofread your texts as you type based on textlint rules!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย textlint: Proofreader

ดาวน์โหลดไฟล์ส่วนขยาย textlint: Proofreader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        textlint is a pluggable, extensible and awesome tool to proofread your texts.
And this extension is a wrapper to use textlint on your browser!

To know about "textlint", visit http://textlint.github.io/ for details.

Once you activate this extension, you will see red highlighting markers on your text you are just typing. They show you the errors found by textlint and you can correct them visually.

textlint has also "Auto-Fix" feature that corrects your text automagically! Of course you can revert it if you don't like it.

* Since textlint is not supporting web browsers, some linting rules cannot work on the browser as well. So this extension bundles linting rules and supports them to run on the browser.
* "Auto-Fix" feature is currently supported by only a few linting rules.                    

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

ชื่อ textlint: Proofreader textlint: Proofreader
ID hdongmdneapmhfblomidbafplpanpdmm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/textlint-proofreader/hdongmdneapmhfblomidbafplpanpdmm
คำอธิบาย Proofread your texts as you type based on textlint rules!
ขนาดไฟล์ 18.07 MB
จำนวนการติดตั้ง 2,325
เวอร์ชันปัจจุบัน 2.1.1
อัปเดตครั้งล่าสุด 2016-05-08
วันที่เผยแพร่ 2016-05-08
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา IRIDE Monad
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/io-monad/textlint-chrome-extension
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "2.1.1",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "page": "pages\/background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-black-19.png",
            "38": "images\/icon-black-38.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "pages\/popup.html"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/vendor.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "sandbox": {
        "pages": [
            "pages\/sandbox.html"
        ]
    },
    "web_accessible_resources": [
        "fonts\/font-awesome\/fontawesome-webfont.eot",
        "fonts\/font-awesome\/fontawesome-webfont.svg",
        "fonts\/font-awesome\/fontawesome-webfont.ttf",
        "fonts\/font-awesome\/fontawesome-webfont.woff",
        "fonts\/font-awesome\/fontawesome-webfont.woff2",
        "dict\/base.dat",
        "dict\/cc.dat",
        "dict\/check.dat",
        "dict\/tid_map.dat",
        "dict\/tid_pos.dat",
        "dict\/tid.dat",
        "dict\/unk_char.dat",
        "dict\/unk_compat.dat",
        "dict\/unk_invoke.dat",
        "dict\/unk_map.dat",
        "dict\/unk_pos.dat",
        "dict\/unk.dat"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.brcdn.org https:\/\/brcdn.org; object-src 'self'"
}