Reading Glasses
Shows a more focused view of a webpage.
什么是Reading Glasses?
Reading Glasses是由colin开发的Chrome扩展程序,该扩展的主要功能是“Shows a more focused view of a webpage.”。
扩展截图
下载Reading Glasses扩展crx文件
下载Reading Glasses扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple browser extension to generate a, hopefully, more readable and focused template. This is a general solution so unfortunately it does not solve the problem perfectly for all web content. Could also be useful for consolidating web text to be copy and pasted into a text file. Should also be helpful reducing clutter on certain websites if you don't run any adblock software. 扩展基本信息
| 名称 | |
| ID | jjncchdhgngceellihkchfojlmekodch |
| 官方URL | https://chromewebstore.google.com/detail/reading-glasses/jjncchdhgngceellihkchfojlmekodch |
| 简介 | Shows a more focused view of a webpage. |
| 文件大小 | 7.1 KB |
| 安装次数 | 38 |
| 当前版本 | 1.2 |
| 更新时间 | 2019-03-05 |
| 上架时间 | 2019-03-05 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | colin |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reading Glasses",
"description": "Shows a more focused view of a webpage.",
"version": "1.2",
"manifest_version": 2,
"browser_action": {
"default_title": "Reading Glasses",
"default_icon": {
"16": "images\/reading16.png",
"48": "images\/reading48.png",
"128": "images\/reading128.png"
}
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab"
],
"icons": {
"16": "images\/reading16.png",
"48": "images\/reading48.png",
"128": "images\/reading128.png"
},
"web_accessible_resources": [
"dialog.css"
]
} | |