Medium Word Count

This extension counts the number of words in a draft post on the site medium.com

Medium Word Countคืออะไร?

Medium Word Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Heavy Code และคุณลักษณะหลักของมันคือ "This extension counts the number of words in a draft post on the site medium.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Medium Word Count

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

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

                        Medium.com is a place for people to write posts and let people read them. By default, Medium doesn't count the number of words of a post you've written. Instead, Medium likes to tell users how long it will take to read an article.

This extension does what Medium doesn't and counts the number of words in a post. This count is subtlety displayed at the top of the page.

If you've ever wanted to write a post on medium.com that is a specific length, this extension will keep you informed of how long your post is.                    

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

ชื่อ Medium Word Count Medium Word Count
ID hleffkfamabgiaimhikcbdkbifkcddac
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/medium-word-count/hleffkfamabgiaimhikcbdkbifkcddac
คำอธิบาย This extension counts the number of words in a draft post on the site medium.com
ขนาดไฟล์ 36.61 KB
จำนวนการติดตั้ง 158
เวอร์ชันปัจจุบัน 0.1.6
อัปเดตครั้งล่าสุด 2014-06-24
วันที่เผยแพร่ 2014-06-24
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Heavy Code
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kenstone/MediumWordCount
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Medium Word Count",
    "description": "This extension counts the number of words in a draft post on the site medium.com",
    "version": "0.1.6",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/medium.com\/*"
            ],
            "css": [
                "css\/mediumcount.css"
            ],
            "js": [
                "scripts\/jquery-2.0.3.min.js",
                "scripts\/mediumcount.js"
            ]
        }
    ],
    "permissions": [
        "history",
        "tabs",
        "https:\/\/medium.com\/"
    ]
}