WP Read Time

Tells You How Long It Takes To Read Your Blog Posts

WP Read Timeคืออะไร?

WP Read Time เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Khai และคุณลักษณะหลักของมันคือ "Tells You How Long It Takes To Read Your Blog Posts"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WP Read Time

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

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

                        Wordpress Read Time Chrome Extensions tells you how long it takes for your readers to read your blog posts when you are writing them.

This way you can adjust your blog post length to suit your readers.

The reading time is based on the average reading speed of 250 words per minute.

To start, simply head on to your wordpress blog to create or edit a blog post. The read time will appear below the word count.                    

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

ชื่อ WP Read Time WP Read Time
ID chnkofflkgbfmpakblnoeeaollaakdio
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wp-read-time/chnkofflkgbfmpakblnoeeaollaakdio
คำอธิบาย Tells You How Long It Takes To Read Your Blog Posts
ขนาดไฟล์ 178 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-02-01
วันที่เผยแพร่ 2019-01-26
ผู้พัฒนา Khai
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WP Read Time",
    "short_name": "WP Read Time",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Tells You How Long It Takes To Read Your Blog Posts",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "jq.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}