Bionic Reader Extension

A concept called Bionic Reading aims to increase readability of text for humans. This extension auto-converts text into Bionic.

Bionic Reader Extensionคืออะไร?

Bionic Reader Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Quasso และคุณลักษณะหลักของมันคือ "A concept called Bionic Reading aims to increase readability of text for humans. This extension auto-converts text into Bionic."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bionic Reader Extension

ดาวน์โหลดไฟล์ส่วนขยาย Bionic Reader Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This was created for fun by a passionate developer after reading an example of this in use on LinkedIn. The code for this extension is open source.

Right now, it supports:
- automatic generation of bionic text on websites matching a list the extension has hardcoded for additional privacy
- native notifications
- toggling 'bionic' status on, "custom" or off after it's been rendered on a page (helps see the difference at a glance and it may not always look ideal!)

(Custom overrides the default styling of the text in an attempt to increase legibility, this could be user configurable in future!)

There are currently 32 supported sites, but I cannot list them here because  the platform automatically rejects the submission (due to 'keyword spam').

NOTE: I have noticed some of these websites will quickly override custom styles the extension applies, which can impact the functionality of the extension. I'm sure a workaround could be sought for this, but they are probably using some script to monitor changes to HTML in the DOM I'd imagine (e.g. BBC news does this, however the text override styling still works).

Please feel free to contact me if you have ideas for new features.

I don't want anything for doing this nor can I commit much/any real time to it necessarily going forward. Would love for it to be embraced by other developers!

Repository is here, developers feel free to get involved: https://github.com/Quasso/bionic-reader-extension                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bionic Reader Extension Bionic Reader Extension
ID gjbbpnbednpggjdonnagocmcdeljifpl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bionic-reader-extension/gjbbpnbednpggjdonnagocmcdeljifpl
คำอธิบาย A concept called Bionic Reading aims to increase readability of text for humans. This extension auto-converts text into Bionic.
ขนาดไฟล์ 28.22 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-05-31
วันที่เผยแพร่ 2022-05-30
ผู้พัฒนา Quasso
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Quasso/bionic-reader-extension
URL หน้าช่วยเหลือ https://github.com/Quasso/bionic-reader-extension
URL หน้านโยบายความเป็นส่วนตัว https://raw.githubusercontent.com/Quasso/bionic-reader-extension/main/PRIVACY.md
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Reader Extension",
    "description": "A concept called Bionic Reading aims to increase readability of text for humans. This extension auto-converts text into Bionic.",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting",
        "notifications"
    ],
    "action": {
        "browser_action": {
            "default_title": "Bionic Reader",
            "default_popup": "popup.html",
            "icons": {
                "16": ".\/assets\/compiled\/icon-16.png",
                "32": ".\/assets\/compiled\/icon-32.png",
                "48": ".\/assets\/compiled\/icon-48.png",
                "128": ".\/assets\/compiled\/icon-128.png"
            }
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.technologyreview.com\/*",
                "https:\/\/*.wired.com\/*",
                "https:\/\/*.linkedin.com\/*",
                "https:\/\/*.medium.com\/*",
                "https:\/\/*.economist.com\/*",
                "https:\/\/*.nytimes.com\/*",
                "https:\/\/*.wsj.com\/*",
                "https:\/\/*.wikipedia.org\/*",
                "https:\/\/*.bbc.com\/news\/*",
                "https:\/\/*.bbc.co.uk\/news\/*",
                "https:\/\/*.bloomberg.com\/*",
                "https:\/\/*.theepochtimes.com\/*",
                "https:\/\/*.foxnews.com\/*",
                "https:\/\/finance.yahoo.com\/*",
                "https:\/\/news.yahoo.com\/*",
                "https:\/\/*.theguardian.com\/*",
                "https:\/\/*.washingtonpost.com\/*",
                "https:\/\/*.cnbc.com\/*",
                "https:\/\/*.express.co.uk\/*",
                "https:\/\/*.usatoday.com\/*",
                "https:\/\/*.buzzfeed.com\/*",
                "https:\/\/*.thesun.com\/*",
                "https:\/\/*.nypost.com\/*",
                "https:\/\/*.businessinsider.com\/*",
                "https:\/\/*.forbes.com\/*",
                "https:\/\/*.indepedent.co.uk\/*",
                "https:\/\/*.abc.net.au\/*",
                "https:\/\/*.news.com.au\/*",
                "https:\/\/*.mirror.co.uk\/*",
                "https:\/\/*.indiatimes.com\/*",
                "https:\/\/*.huffingtonpost.com\/*",
                "https:\/\/*.nbcnews.com\/*"
            ],
            "css": [
                "bre.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}