Cleanreads
Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…
Cleanreadsคืออะไร?
Cleanreads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hermanfassett และคุณลักษณะหลักของมันคือ "Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cleanreads
ดาวน์โหลดไฟล์ส่วนขยาย Cleanreads ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Cleanreads |
ID | cmlphkeobcbjgagedegbejlhlbnkniee |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cleanreads/cmlphkeobcbjgagedegbejlhlbnkniee |
คำอธิบาย | Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book… |
ขนาดไฟล์ | 1.59 MB |
จำนวนการติดตั้ง | 63 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2023-02-11 |
วันที่เผยแพร่ | 2022-02-22 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | hermanfassett |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/HermanFassett/cleanreads-extension |
URL หน้าช่วยเหลือ | https://github.com/HermanFassett/cleanreads-extension/issues |
ภาษาที่รองรับ | 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": [] } ] } |