Bionic Converter
Chrome extension for Bionic Reading (https://bionic-reading.com)
Co to jest Bionic Converter?
Bionic Converter to rozszerzenie Chrome opracowane przez Pixel Prefect, a jego główną funkcją jest „Chrome extension for Bionic Reading (https://bionic-reading.com)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bionic Converter
Pobierz pliki rozszerzeń Bionic Converter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | aghdfgeepkhlnpnohgiennjpkidkodnb |
| Oficjalny URL | https://chromewebstore.google.com/detail/bionic-converter/aghdfgeepkhlnpnohgiennjpkidkodnb |
| Opis | Chrome extension for Bionic Reading (https://bionic-reading.com) |
| Rozmiar pliku | 55.09 KB |
| Liczba instalacji | 515 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2022-06-03 |
| Data Publikacji | 2022-05-23 |
| Deweloper | Pixel Prefect |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Pomocy | https://pixel-prefect.com |
| Adres URL Strony Polityki Prywatności | https://pixel-prefect.com/bionic-reader |
| Obsługiwane Języki | 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"
]
}
]
} | |