CleanerReads - A Goodreads Theme

Nothing removed, just muted or moved out of the way.

Co to jest CleanerReads - A Goodreads Theme?

CleanerReads - A Goodreads Theme to rozszerzenie Chrome opracowane przez daniel.vanzin, a jego główną funkcją jest „Nothing removed, just muted or moved out of the way.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CleanerReads - A Goodreads Theme

Pobierz pliki rozszerzeń CleanerReads - A Goodreads Theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        • SIDEBAR to the right, don't know if it helps much
• TOPBAR to the sidebar, that orange/purple strip on the top
• NAVBAR nearly invisible and hidden on scroll
• DUPLICATED ELEMENTS removed, like user stars, author info
• BOOK DESCRIPTION always expanded
• SOCIAL INFO and buttons with less emphasis on 
• REVIEWS centralized on page, user info moved to the left
• REVIEWS with less characters per row
• OPTIONS
    • show cover on the left
    • make text wider
    • hide elements from front page
    • move About Author and Readers Also Enjoyed to the sidebar                    

Podstawowe informacje o rozszerzeniu

Nazwa CleanerReads - A Goodreads Theme CleanerReads - A Goodreads Theme
ID pfckicghmjgghmoeolegcbccjekhejji
Oficjalny URL https://chromewebstore.google.com/detail/cleanerreads-a-goodreads/pfckicghmjgghmoeolegcbccjekhejji
Opis Nothing removed, just muted or moved out of the way.
Rozmiar pliku 40.34 KB
Liczba instalacji 81
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2023-04-20
Data Publikacji 2023-01-09
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper daniel.vanzin
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CleanerReads - A Goodreads Theme",
    "version": "1.3.0",
    "description": "Nothing removed, just muted or moved out of the way.",
    "homepage_url": "https:\/\/github.com\/icetbr\/webext-cleanerreads",
    "author": "icetbr",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.goodreads.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_popup": "options.html",
        "browser_style": true
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}