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…”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載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 Cleanreads
ID cmlphkeobcbjgagedegbejlhlbnkniee
官方網址 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": []
        }
    ]
}