WP Read Time

Tells You How Long It Takes To Read Your Blog Posts

WP Read Time क्या है?

WP Read Time Khai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tells You How Long It Takes To Read Your Blog Posts"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WP Read Time एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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:\/\/*\/*"
            ]
        }
    ]
}