Roam Reduced
A clean, automatic light/dark theme for Roam.
Wat is Roam Reduced?
Roam Reduced is een Chrome-extensie ontwikkeld door jdsimcoe, en de belangrijkste functie is "A clean, automatic light/dark theme for Roam.".
Extensie Screenshots
Download het CRX-bestand van de extensie Roam Reduced
Download Roam Reduced-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Roam Reduced |
ID | dlaojjkppiogjhnbhhdaoaeilfadcbgg |
Officiële URL | https://chromewebstore.google.com/detail/roam-reduced/dlaojjkppiogjhnbhhdaoaeilfadcbgg |
Beschrijving | A clean, automatic light/dark theme for Roam. |
Bestandsgrootte | 9.42 KB |
Aantal Installaties | 21 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2020-06-03 |
Publicatiedatum | 2020-06-02 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | jdsimcoe |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://jdsimcoe.com |
Help Pagina-URL | https://github.com/jdsimcoe/roam-reduced |
Ondersteunde Talen | 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" } |