Roam Highlighter

Web highlighter for Roam Research

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

Το Roam Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://danielwirtz.com, και η κύρια λειτουργία του είναι "Web highlighter for Roam Research".

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

screenshot

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

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

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

                        This extension offers an easy way to highlight text on a web page and import it to note-taking apps like Roam Research, Obsidian, Logseq or Notion in the format that best suits your workflow.

This is especially helpful of you are doing research, want to build your own knowledge-base or just want to save your favorite blog articles. 

FEATURES: 
→ Easily highlight any text on a web page
→ Add tags to bring your highlights into context
→ Customise the format of your copied highlights with placeholders
→ Jump to the next open Roam Research tab, to quickly insert your highlight

HOW TO GET THE MOST OUT THE EXTENSION?
The quickest way to launch the extension is with a hotkey (e.g CMD + SHIFT + R). You can set a hotkey in the Chrome Settings for Extensions. Next you can create your own format for the highlights, by going into the widget settings. Play around with the placeholders and use spaces to indent content.

QUESTIONS / FEEDBACK:
Do you have questions or feedback? The best approach is to write me directly on twitter.com/wirtzdan

PERMISSIONS:
Roam Highlighter needs to modify the websites you visit to display the widget. That's why it needs the requested permissions to function properly. However, the exact phrase ("Read and change all your data on the website you visit") make it sound more invasive than it actually is. Currently, the extension runs completely on your local machine and the only thing that is saved, are the settings you make.                    

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

Όνομα Roam Highlighter Roam Highlighter
ID hponfflfgcjikmehlcdcnpapicnljkkc
Επίσημο URL https://chromewebstore.google.com/detail/roam-highlighter/hponfflfgcjikmehlcdcnpapicnljkkc
Περιγραφή Web highlighter for Roam Research
Μέγεθος Αρχείου 1.89 MB
Αριθμός Εγκαταστάσεων 11,024
Τρέχουσα Έκδοση 0.4.4
Τελευταία Ενημέρωση 2021-07-23
Ημερομηνία Δημοσίευσης 2020-05-29
Αξιολόγηση 4.67/5 Συνολικά 54 Αξιολογήσεις
Προγραμματιστής https://danielwirtz.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://roam-highlighter.danielwirtz.com
Διεύθυνση URL της Σελίδας Βοήθειας https://airtable.com/shrvwKbD1vrWGkRCA
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roam Highlighter",
    "description": "Web highlighter for Roam Research",
    "version": "0.4.4",
    "manifest_version": 2,
    "icons": {
        "16": ".\/icon\/icon-16.png",
        "48": ".\/icon\/icon-48.png",
        "128": ".\/icon\/icon-128.png"
    },
    "background": {
        "scripts": [
            "app\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "128": ".\/icon\/icon-128.png"
        },
        "default_title": "Roam Highlighter"
    },
    "content_scripts": [
        {
            "js": [
                "static\/js\/content.js"
            ],
            "css": [
                "static\/css\/app.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "static\/js\/*.js",
        "static\/js\/*.js.map",
        "static\/css\/*.css",
        "static\/css\/*.css.map"
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}