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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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