Smart Reader - Bionic Reader
Modify a web page to make it more readable
Что такое Smart Reader - Bionic Reader?
Smart Reader - Bionic Reader - это расширение Chrome, разработанное Poucous, и его основная функция - "Modify a web page to make it more readable".
Снимки экрана расширения
Скачать файл CRX расширения Smart Reader - Bionic Reader
Скачайте файлы расширений Smart Reader - Bionic Reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
SmartReader or Bionic Reader changes a web page to make it more readable by bolding the beginning of a word (like bionic reading).
You just need to install and enjoy.
Github : https://github.com/Poucous/smartReader
Note : the extension will evolve according to its use Основная информация о расширении
| Название | |
| ID | cgkfhliknoajpncfpnbmknalklgiekdj |
| Официальный URL | https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj |
| Описание | Modify a web page to make it more readable |
| Размер файла | 84.48 KB |
| Количество установок | 1,057 |
| Текущая Версия | 1.6 |
| Последнее Обновление | 2022-10-05 |
| Дата публикации | 2022-06-07 |
| Рейтинг | 3.50/5 Всего 6 оценок |
| Разработчик | Poucous |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Smart Reader - Bionic Reader",
"manifest_version": 3,
"version": "1.6",
"description": "Modify a web page to make it more readable",
"icons": {
"48": "\/icons\/smartReader-48.png"
},
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"\/content_scripts\/assembleElements.js",
"\/content_scripts\/filterElements.js",
"\/content_scripts\/isThisTag.js",
"\/content_scripts\/modifyHtml.js",
"\/content_scripts\/removeBold.js",
"\/content_scripts\/textAtRoot.js",
"\/content_scripts\/isAddonActived.js",
"\/content_scripts\/isItLetter.js",
"\/content_scripts\/updatePage.js",
"main.js"
],
"css": [
"style.css"
]
}
],
"background": {
"service_worker": "\/background.js"
},
"action": {
"default_icon": {
"16": "\/icons\/button\/smartReader-16.png",
"32": "\/icons\/button\/smartReader-32.png"
}
}
} | |