Roam Reduced
A clean, automatic light/dark theme for Roam.
Vad är Roam Reduced?
Roam Reduced är en Chrome-tillägg utvecklad av jdsimcoe, och dess huvudfunktion är "A clean, automatic light/dark theme for Roam.".
Tilläggsskärmbilder
Ladda ner Roam Reduced-förlängningens CRX-fil
Ladda ner Roam Reduced-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Roam Reduced |
ID | dlaojjkppiogjhnbhhdaoaeilfadcbgg |
Officiell webbadress | https://chromewebstore.google.com/detail/roam-reduced/dlaojjkppiogjhnbhhdaoaeilfadcbgg |
Beskrivning | A clean, automatic light/dark theme for Roam. |
Filstorlek | 9.42 KB |
Antal Installationer | 21 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2020-06-03 |
Publiceringsdatum | 2020-06-02 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | jdsimcoe |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://jdsimcoe.com |
Hjälpsida URL | https://github.com/jdsimcoe/roam-reduced |
Stödda Språk | 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" } |