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
电子邮箱 [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"
    }
}