Obsidian Clipper

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

Wat is Obsidian Clipper?

Obsidian Clipper is een Chrome-extensie ontwikkeld door Joost Plattel, en de belangrijkste functie is "A small chrome plugin that let's you easily clip things to Obsidian".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Obsidian Clipper

Download Obsidian Clipper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Obsidian Clipper Obsidian Clipper
ID mphkdfmipddgfobjhphabphmpdckgfhb
Officiële URL https://chromewebstore.google.com/detail/obsidian-clipper/mphkdfmipddgfobjhphabphmpdckgfhb
Beschrijving A small chrome plugin that let's you easily clip things to Obsidian
Bestandsgrootte 309 KB
Aantal Installaties 20,000
Huidige Versie 0.5.0
Laatst Bijgewerkt 2022-08-17
Publicatiedatum 2020-11-06
Beoordeling 3.76/5 Totaal 29 Beoordelingen
Ontwikkelaar Joost Plattel
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://jplattel.github.io/obsidian-clipper/
Help Pagina-URL https://github.com/jplattel/obsidian-clipper/issues
Ondersteunde Talen 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"
    }
}