Roam Toolkit

Roam force multiplier

Τι είναι το Roam Toolkit;

Το Roam Toolkit είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον roam.toolkit, και η κύρια λειτουργία του είναι "Roam force multiplier".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Roam Toolkit

Λήψη αρχείων επέκτασης Roam Toolkit σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A collection of tools to improve the https://roamresearch.com/ UX and extend it's functionality.

Roam Toolkit development is supported by https://roam.garden/ service - an easy way to publish the results of your thinking from Roam as a static site (digital garden).

Currently supported functionality is:

* Vim Navigation mode: https://www.youtube.com/watch?v=ZxtT05CjOyo

* Spatial Graph mode: https://www.youtube.com/watch?v=Yc1T0micgzk

* FuzzyDate - transform the date entered in the human format into the Roam format. For example if you type in ;fri; it's going to replace it with the properly formatted vale for next Friday, so at the moment it's output would be [[March 13th, 2020]].

See it in action here: https://share.getcloudapp.com/d5u0x1rq

* Implements SM2 Spaced repetition algorithm (Anki version) as described here: https://docs.ankiweb.net/#/faqs?id=what-spaced-repetition-algorithm-does-anki-use for Roam blocks. 
Put a cursor inside the block and pres Ctrl+Shift+ [number between 1 and 4 signifying ease of remembering this card], and the plugin is going to reschedule the Block accordingly (tagging it with the appropriate date and some metadata tags)

* If you put the cursor inside the date or a number and then press Ctrl+Alt+Up/Down - the date would be incremented or decremented. They keyboard shortcut is configurable.

* Applying custom CSS to Roam website.

* Adds shortcuts to delete and duplicated the block

* You can do estimates based on the attribute values attached to the block & Roam query.

* Experimental: live preview (disabled by default)


Changelog:
0.5: 
* Spatial Graph mode - https://www.youtube.com/watch?v=Yc1T0micgzk
* Increase number of Vim hints available
* Make Vim hints work with Ctrl+Shift+click

0.4.5: Navigation bugfix

0.4.4: 
* Fix folding with new version of Roam. 
* Add mapping to open mentions of Block/Page - https://github.com/roam-unofficial/roam-toolkit/pull/167

0.4.3: Insert Random page/Open it in sidebar

0.4.1: A variety of updates and Bugfixes for VIM mode.

0.4: A big update! Vim navigation mode. See https://www.youtube.com/watch?v=ZxtT05CjOyo for demo!

0.3.1: Show Day of the week when hovering over the date page

0.3:
* Experimental live preview 
* Various updates for SRS
* Navigating to a next/previous day
* Bugfixes

0.2:
* Add ability to increment and decrement dates by week
* FuzzyDate add replace mode
* Add "copy block reference" shortcut
* Add shortcut to copy block embed
* Add shortcut to go to today's page
* Estimates: add ability to parse property if it's not the lowest node in the tree.

0.1.1: Minor bugfixes, updates to default shortcuts.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Roam Toolkit Roam Toolkit
ID ebckolanhdjilblnkcgcgifaikppnhba
Επίσημο URL https://chromewebstore.google.com/detail/roam-toolkit/ebckolanhdjilblnkcgcgifaikppnhba
Περιγραφή Roam force multiplier
Μέγεθος Αρχείου 1.11 MB
Αριθμός Εγκαταστάσεων 3,736
Τρέχουσα Έκδοση 0.5.4
Τελευταία Ενημέρωση 2022-05-27
Ημερομηνία Δημοσίευσης 2020-06-17
Αξιολόγηση 4.91/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής roam.toolkit
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/roam-unofficial/roam-toolkit
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/roam-unofficial/roam-toolkit/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roam Toolkit",
    "author": "roam-unofficial",
    "version": "0.5.4",
    "description": "Roam force multiplier",
    "icons": {
        "128": "assets\/icon-128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage",
        "clipboardRead",
        "clipboardWrite",
        "*:\/\/roamresearch.com\/*"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Roam Toolkit",
        "default_icon": "assets\/icon-48.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "entry.js"
            ],
            "matches": [
                "*:\/\/roamresearch.com\/*"
            ]
        }
    ]
}