Obsidian Clipper

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

What is Obsidian Clipper?

Obsidian Clipper is a Chrome extension developed by Joost Plattel, and its main feature is "A small chrome plugin that let's you easily clip things to Obsidian".

Extension Screenshots

screenshot

Download Obsidian Clipper Extension CRX File

Download Obsidian Clipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Obsidian Clipper Obsidian Clipper
ID mphkdfmipddgfobjhphabphmpdckgfhb
Official URL https://chromewebstore.google.com/detail/obsidian-clipper/mphkdfmipddgfobjhphabphmpdckgfhb
Description A small chrome plugin that let's you easily clip things to Obsidian
File Size 309 KB
Installation Count 20,000
Current Version 0.5.0
Last Updated 2022-08-17
Publish Date 2020-11-06
Rating 3.76/5 Total 29 Ratings
Developer Joost Plattel
Email [email protected]
Payment Type free
Extension Website https://jplattel.github.io/obsidian-clipper/
Help Page URL https://github.com/jplattel/obsidian-clipper/issues
Supported Languages 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"
    }
}