Cleanreads

Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…

Vad är Cleanreads?

Cleanreads är en Chrome-tillägg utvecklad av hermanfassett, och dess huvudfunktion är "Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Cleanreads-förlängningens CRX-fil

Ladda ner Cleanreads-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Cleanreads Cleanreads
ID cmlphkeobcbjgagedegbejlhlbnkniee
Officiell webbadress https://chromewebstore.google.com/detail/cleanreads/cmlphkeobcbjgagedegbejlhlbnkniee
Beskrivning Cleanreads extension is a search tool to add a basic advisory content rating system inside of Goodreads. By filtering through book…
Filstorlek 1.59 MB
Antal Installationer 63
Aktuell Version 0.0.3
Senast Uppdaterad 2023-02-11
Publiceringsdatum 2022-02-22
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare hermanfassett
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/HermanFassett/cleanreads-extension
Hjälpsida URL https://github.com/HermanFassett/cleanreads-extension/issues
Stödda Språk 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": []
        }
    ]
}