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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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": []
        }
    ]
}