Bionic Reader

This extension allows you to read the content of a webpage from Bionic way.

ما هو Bionic Reader؟

Bionic Reader هو إضافة Chrome تم تطويرها بواسطة 1mustafaersoy، والميزة الرئيسية لها هي "This extension allows you to read the content of a webpage from Bionic way.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Bionic Reader

قم بتنزيل ملفات الامتداد Bionic Reader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension allows you to read the content of a webpage from Bionic way. This way you can read faster.
It is not a stable version yet. Web page appearance may be distorted or may not work properly on some pages.                    

معلومات أساسية عن التمديد

الاسم Bionic Reader Bionic Reader
ID mnlihdjiilkdcmchjjljpakgbpcoegap
عنوان URL الرسمي https://chromewebstore.google.com/detail/bionic-reader/mnlihdjiilkdcmchjjljpakgbpcoegap
الوصف This extension allows you to read the content of a webpage from Bionic way.
حجم الملف 786 KB
عدد التثبيتات 101
النسخة الحالية 0.1
آخر تحديث 2022-05-24
تاريخ النشر 2022-05-23
المطور 1mustafaersoy
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Reader",
    "description": "This extension allows you to read the content of a webpage from Bionic way.",
    "version": "0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/images\/icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "injectedStyle.css"
            ]
        }
    ],
    "icons": {
        "128": "\/images\/icon.png"
    },
    "host_permissions": [
        ""
    ]
}