Obsidian Clipper

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

Obsidian Clipperคืออะไร?

Obsidian Clipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joost Plattel และคุณลักษณะหลักของมันคือ "A small chrome plugin that let's you easily clip things to Obsidian"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Obsidian Clipper

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}