CleanerReads - A Goodreads Theme
Nothing removed, just muted or moved out of the way.
什么是CleanerReads - A Goodreads Theme?
CleanerReads - A Goodreads Theme是由daniel.vanzin开发的Chrome扩展程序,该扩展的主要功能是“Nothing removed, just muted or moved out of the way.”。
扩展截图
下载CleanerReads - A Goodreads Theme扩展crx文件
下载CleanerReads - A Goodreads Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
• SIDEBAR to the right, don't know if it helps much
• TOPBAR to the sidebar, that orange/purple strip on the top
• NAVBAR nearly invisible and hidden on scroll
• DUPLICATED ELEMENTS removed, like user stars, author info
• BOOK DESCRIPTION always expanded
• SOCIAL INFO and buttons with less emphasis on
• REVIEWS centralized on page, user info moved to the left
• REVIEWS with less characters per row
• OPTIONS
• show cover on the left
• make text wider
• hide elements from front page
• move About Author and Readers Also Enjoyed to the sidebar 扩展基本信息
| 名称 | |
| ID | pfckicghmjgghmoeolegcbccjekhejji |
| 官方URL | https://chromewebstore.google.com/detail/cleanerreads-a-goodreads/pfckicghmjgghmoeolegcbccjekhejji |
| 简介 | Nothing removed, just muted or moved out of the way. |
| 文件大小 | 40.34 KB |
| 安装次数 | 81 |
| 当前版本 | 1.3.0 |
| 更新时间 | 2023-04-20 |
| 上架时间 | 2023-01-09 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | daniel.vanzin |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CleanerReads - A Goodreads Theme",
"version": "1.3.0",
"description": "Nothing removed, just muted or moved out of the way.",
"homepage_url": "https:\/\/github.com\/icetbr\/webext-cleanerreads",
"author": "icetbr",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.goodreads.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options.html"
},
"action": {
"default_popup": "options.html",
"browser_style": true
},
"permissions": [
"storage",
"activeTab"
]
} | |