Roam Reduced

A clean, automatic light/dark theme for Roam.

Roam Reduced là gì?

Roam Reduced là một tiện ích mở rộng Chrome được phát triển bởi jdsimcoe, và tính năng chính của nó là "A clean, automatic light/dark theme for Roam.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Roam Reduced

Tải xuống các tệp mở rộng Roam Reduced dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Roam Reduced Roam Reduced
ID dlaojjkppiogjhnbhhdaoaeilfadcbgg
URL Chính Thức https://chromewebstore.google.com/detail/roam-reduced/dlaojjkppiogjhnbhhdaoaeilfadcbgg
Mô tả A clean, automatic light/dark theme for Roam.
Kích Thước Tệp 9.42 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2020-06-03
Ngày Phát Hành 2020-06-02
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jdsimcoe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://jdsimcoe.com
URL Trang Trợ Giúp https://github.com/jdsimcoe/roam-reduced
Ngôn Ngữ Được Hỗ Trợ 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"
}