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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
        ""
    ]
}