Bionic Converter
Chrome extension for Bionic Reading (https://bionic-reading.com)
Bionic Converterคืออะไร?
Bionic Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pixel Prefect และคุณลักษณะหลักของมันคือ "Chrome extension for Bionic Reading (https://bionic-reading.com)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bionic Converter
ดาวน์โหลดไฟล์ส่วนขยาย Bionic Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension uses the Bionic Reading API to convert web pages to the Bionic Reading format. A Bionic Reading API key is required, which can be obtained for free from bionic-reading.com. This extension is not affiliated with Bionic Reading GmbH.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bionic Converter |
ID | aghdfgeepkhlnpnohgiennjpkidkodnb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bionic-converter/aghdfgeepkhlnpnohgiennjpkidkodnb |
คำอธิบาย | Chrome extension for Bionic Reading (https://bionic-reading.com) |
ขนาดไฟล์ | 55.09 KB |
จำนวนการติดตั้ง | 515 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2022-06-03 |
วันที่เผยแพร่ | 2022-05-23 |
ผู้พัฒนา | Pixel Prefect |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://pixel-prefect.com |
URL หน้านโยบายความเป็นส่วนตัว | https://pixel-prefect.com/bionic-reader |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bionic Converter", "description": "Chrome extension for Bionic Reading (https:\/\/bionic-reading.com)", "version": "1.0.1", "manifest_version": 3, "author": "Pixel Prefect", "permissions": [ "storage", "activeTab", "scripting" ], "icons": { "16": "\/images\/logo-16.png", "32": "\/images\/logo-32.png", "48": "\/images\/logo-48.png", "128": "\/images\/logo-128.png" }, "options_page": "src\/options.html", "background": { "service_worker": "src\/scripts\/background.js" }, "action": { "default_title": "Activate bionic reading for page", "default_icon": { "16": "\/images\/logo-16.png", "32": "\/images\/logo-32.png", "48": "\/images\/logo-48.png", "128": "\/images\/logo-128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "src\/styles\/main.css" ], "js": [ "src\/scripts\/constants.js", "src\/scripts\/functions.js" ] } ] } |