obsidian-livesync-webclip

Webclipper for Obsidian LiveSync

Was ist obsidian-livesync-webclip?

obsidian-livesync-webclip ist eine Chrome-Erweiterung, die von vrtmrz entwickelt wurde, und ihr Hauptmerkmal ist "Webclipper for Obsidian LiveSync".

Erweiterungsscreenshots

screenshot

obsidian-livesync-webclip-Erweiterungs-CRX-Datei herunterladen

Laden Sie obsidian-livesync-webclip-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Clip web pages to markdown, and send them to Obsidian via Obsidian-livesync.
You can keep online content as a local notebook, and reallege, collect, and add your comments as markdown.

Images are also captured. Therefore, you can view the content while you are off the line.

Self-hosted livesync and obsidian-live-sync-webcip are made in OpenSource. If you feel anything worries, check the repo. You can control all your data completely.

Note:
- Obsidian, and your own server or SaaS account are required. for more information, check the repo.
- Your Cloudant or CouchDB instance should allow the CORS request from the URI you have clipped.

https://github.com/vrtmrz/obsidian-livesync                    

Grundlegende Informationen zur Erweiterung

Name obsidian-livesync-webclip obsidian-livesync-webclip
ID jfpaflmpckblieefkegjncjoceapakdf
Offizielle URL https://chromewebstore.google.com/detail/obsidian-livesync-webclip/jfpaflmpckblieefkegjncjoceapakdf
Beschreibung Webclipper for Obsidian LiveSync
Dateigröße 78.67 KB
Installationsanzahl 1,456
Aktuelle Version 0.6
Letztes Update 2023-12-11
Veröffentlichungsdatum 2021-10-25
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler vrtmrz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/vrtmrz/obsidian-livesync
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "name": "obsidian-livesync-webclip",
    "description": "Webclipper for Obsidian LiveSync",
    "version": "0.6",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "pageCapture"
    ],
    "host_permissions": [
        ""
    ]
}