ReadingLine
Acts as a reading ruler, helping to keep an eye on a line of text with a mouse.
ReadingLineとは何ですか?
ReadingLineはneochiefによって開発されたChromeの拡張機能で、その主な機能は「Acts as a reading ruler, helping to keep an eye on a line of text with a mouse.」です。
拡張機能のスクリーンショット
ReadingLine拡張機能のCRXファイルをダウンロード
ReadingLine拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
## Data Protection FAQ: - Does the extension collect any user data? - No, the Reading Ruler does not collect any kind of data. - Does the extension track users? - No, the Reading Ruler does not track users. - Does the extension send data to any server? - No, the Reading Ruler does not use any kind of server connection. All the processing is doing locally. - Why does the extension need 'read and change websites' permission? - Because the Reading Ruler needs the information of website elements to calculate and render the ruler.
拡張機能の基本情報
名前 | ReadingLine |
ID | bedndhimamenfipaocmhcpcickamhfnm |
公式URL | https://chromewebstore.google.com/detail/readingline/bedndhimamenfipaocmhcpcickamhfnm |
説明 | Acts as a reading ruler, helping to keep an eye on a line of text with a mouse. |
ファイルサイズ | 177 KB |
インストール数 | 8,738 |
現在のバージョン | 0.0.3 |
最終更新日 | 2022-06-13 |
公開日 | 2018-06-01 |
評価 | 4.00/5 合計 31 レビュー |
開発者 | neochief |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/neochief/ReadingLine |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ReadingLine", "version": "0.0.3", "manifest_version": 3, "description": "Acts as a reading ruler, helping to keep an eye on a line of text with a mouse.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon19-active.png", "default_title": "Toggle Reading Line (Ctrl + Alt + -)" }, "permissions": [ "storage", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "background": { "service_worker": "reading-line-bg.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "css": [ "reading-line.css" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "reading-line.js" ] } ] } |