Obsidian Clipper

A small chrome plugin that let's you easily clip things to Obsidian

Was ist Obsidian Clipper?

Obsidian Clipper ist eine Chrome-Erweiterung, die von Joost Plattel entwickelt wurde, und ihr Hauptmerkmal ist "A small chrome plugin that let's you easily clip things to Obsidian".

Erweiterungsscreenshots

screenshot

Obsidian Clipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Obsidian Clipper-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

                        This is an unofficial clipper for Obsidian that allows you to easily clip a selection to a note in Obsidian. Clip a selection in Chrome with or without markdown support to Obsidian.                    

Grundlegende Informationen zur Erweiterung

Name Obsidian Clipper Obsidian Clipper
ID mphkdfmipddgfobjhphabphmpdckgfhb
Offizielle URL https://chromewebstore.google.com/detail/obsidian-clipper/mphkdfmipddgfobjhphabphmpdckgfhb
Beschreibung A small chrome plugin that let's you easily clip things to Obsidian
Dateigröße 309 KB
Installationsanzahl 20,000
Aktuelle Version 0.5.0
Letztes Update 2022-08-17
Veröffentlichungsdatum 2020-11-06
Bewertung 3.76/5 Insgesamt 29 Bewertungen
Entwickler Joost Plattel
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://jplattel.github.io/obsidian-clipper/
Hilfeseite URL https://github.com/jplattel/obsidian-clipper/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Obsidian Clipper",
    "version": "0.5.0",
    "manifest_version": 3,
    "description": "A small chrome plugin that let's you easily clip things to Obsidian",
    "homepage_url": "https:\/\/github.com\/jplattel\/obsidian-clipper",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "Clip selection to Obsidian"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/jplattel.github.io\/obsidian-clipper\/clip.html"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/lib\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "48": "icons\/favicon-48x48.png",
        "128": "icons\/favicon-128x128.png"
    }
}