Roam Reduced

A clean, automatic light/dark theme for Roam.

Co to jest Roam Reduced?

Roam Reduced to rozszerzenie Chrome opracowane przez jdsimcoe, a jego główną funkcją jest „A clean, automatic light/dark theme for Roam.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Roam Reduced

Pobierz pliki rozszerzeń Roam Reduced 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

                        This theme automatically applied light/dark styling based on your default system theme. It removes distracting elements, and improves the overall usage of Roam Research.                    

Podstawowe informacje o rozszerzeniu

Nazwa Roam Reduced Roam Reduced
ID dlaojjkppiogjhnbhhdaoaeilfadcbgg
Oficjalny URL https://chromewebstore.google.com/detail/roam-reduced/dlaojjkppiogjhnbhhdaoaeilfadcbgg
Opis A clean, automatic light/dark theme for Roam.
Rozmiar pliku 9.42 KB
Liczba instalacji 21
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2020-06-03
Data Publikacji 2020-06-02
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper jdsimcoe
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://jdsimcoe.com
Adres URL Strony Pomocy https://github.com/jdsimcoe/roam-reduced
Obsługiwane Języki en-US
manifest.json
{
    "author": "Jonathan Simcoe",
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Roam Reduced"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.roamresearch.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.roamresearch.com\/*"
            ],
            "css": [
                "reduced.css"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "A clean, automatic light\/dark theme for Roam.",
    "homepage_url": "https:\/\/jdsimcoe.com\/",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "name": "Roam Reduced",
    "permissions": [
        "tabs",
        "*:\/\/*.roamresearch.com\/#\/*"
    ],
    "short_name": "RoamReduced",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2"
}