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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
]
}
]
} | |