WP Read Time

Tells You How Long It Takes To Read Your Blog Posts

WP Read Time là gì?

WP Read Time là một tiện ích mở rộng Chrome được phát triển bởi Khai, và tính năng chính của nó là "Tells You How Long It Takes To Read Your Blog Posts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WP Read Time

Tải xuống các tệp mở rộng WP Read Time dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WP Read Time WP Read Time
ID chnkofflkgbfmpakblnoeeaollaakdio
URL Chính Thức https://chromewebstore.google.com/detail/wp-read-time/chnkofflkgbfmpakblnoeeaollaakdio
Mô tả Tells You How Long It Takes To Read Your Blog Posts
Kích Thước Tệp 178 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-02-01
Ngày Phát Hành 2019-01-26
Nhà Phát Triển Khai
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}