Smart Reader - Bionic Reader
Modify a web page to make it more readable
Smart Reader - Bionic Readerとは何ですか?
Smart Reader - Bionic ReaderはPoucousによって開発されたChromeの拡張機能で、その主な機能は「Modify a web page to make it more readable」です。
拡張機能のスクリーンショット
Smart Reader - Bionic Reader拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
}
}
} | |