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によって開発されたChromeの拡張機能で、その主な機能は「Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…」です。
拡張機能のスクリーンショット
Cleanreads拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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": [] } ] } |