Cleanreads
Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…
Cleanreads là gì?
Cleanreads là một tiện ích mở rộng Chrome được phát triển bởi hermanfassett, và tính năng chính của nó là "Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cleanreads
Tải xuống các tệp mở rộng Cleanreads dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book description, shelves, and reviews, Cleanreads can give a score on how likely it is to be a clean read, and also gathers all the data used to determine score for easy reviewal. Book genres, lists, shelves, and individual books can also all be added into a 'Clean List' which will automatically give books a full Cleanreads score when matched while browsing. These lists can be downloaded and imported for saving and sharing lists of clean books.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cleanreads |
ID | cmlphkeobcbjgagedegbejlhlbnkniee |
URL Chính Thức | https://chromewebstore.google.com/detail/cleanreads/cmlphkeobcbjgagedegbejlhlbnkniee |
Mô tả | Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book… |
Kích Thước Tệp | 1.59 MB |
Số Lần Cài Đặt | 63 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2023-02-11 |
Ngày Phát Hành | 2022-02-22 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | hermanfassett |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/HermanFassett/cleanreads-extension |
URL Trang Trợ Giúp | https://github.com/HermanFassett/cleanreads-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 3, "name": "Cleanreads", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "permissions": [ "storage", "unlimitedStorage", "tabs", "scripting" ], "host_permissions": [ "*:\/\/*.goodreads.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.goodreads.com\/*", "https:\/\/*.goodreads.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [] } ] } |