Bionic Converter
Chrome extension for Bionic Reading (https://bionic-reading.com)
什麼是Bionic Converter?
Bionic Converter是由Pixel Prefect開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension for Bionic Reading (https://bionic-reading.com)”。
擴展截圖
下載Bionic Converter擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | aghdfgeepkhlnpnohgiennjpkidkodnb |
| 官方網址 | 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"
]
}
]
} | |