Cleanreads
Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…
Cleanreads क्या है?
Cleanreads hermanfassett द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cleanreads एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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": [] } ] } |