Obsidian Clipper

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

Obsidian Clipperとは何ですか?

Obsidian ClipperはJoost Plattelによって開発されたChromeの拡張機能で、その主な機能は「A small chrome plugin that let's you easily clip things to Obsidian」です。

拡張機能のスクリーンショット

screenshot

Obsidian Clipper拡張機能のCRXファイルをダウンロード

Obsidian Clipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Obsidian Clipper Obsidian Clipper
ID mphkdfmipddgfobjhphabphmpdckgfhb
公式URL https://chromewebstore.google.com/detail/obsidian-clipper/mphkdfmipddgfobjhphabphmpdckgfhb
説明 A small chrome plugin that let's you easily clip things to Obsidian
ファイルサイズ 309 KB
インストール数 20,000
現在のバージョン 0.5.0
最終更新日 2022-08-17
公開日 2020-11-06
評価 3.76/5 合計 29 レビュー
開発者 Joost Plattel
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://jplattel.github.io/obsidian-clipper/
ヘルプページのURL https://github.com/jplattel/obsidian-clipper/issues
対応言語 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"
    }
}