WP Read Time

Tells You How Long It Takes To Read Your Blog Posts

WP Read Timeとは何ですか?

WP Read TimeはKhaiによって開発されたChromeの拡張機能で、その主な機能は「Tells You How Long It Takes To Read Your Blog Posts」です。

拡張機能のスクリーンショット

screenshot

WP Read Time拡張機能のCRXファイルをダウンロード

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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}