obsidian-livesync-webclip

Webclipper for Obsidian LiveSync

Vad är obsidian-livesync-webclip?

obsidian-livesync-webclip är en Chrome-tillägg utvecklad av vrtmrz, och dess huvudfunktion är "Webclipper for Obsidian LiveSync".

Tilläggsskärmbilder

screenshot

Ladda ner obsidian-livesync-webclip-förlängningens CRX-fil

Ladda ner obsidian-livesync-webclip-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Clip web pages to markdown, and send them to Obsidian via Obsidian-livesync.
You can keep online content as a local notebook, and reallege, collect, and add your comments as markdown.

Images are also captured. Therefore, you can view the content while you are off the line.

Self-hosted livesync and obsidian-live-sync-webcip are made in OpenSource. If you feel anything worries, check the repo. You can control all your data completely.

Note:
- Obsidian, and your own server or SaaS account are required. for more information, check the repo.
- Your Cloudant or CouchDB instance should allow the CORS request from the URI you have clipped.

https://github.com/vrtmrz/obsidian-livesync                    

Grundläggande Information om Tillägg

Namn obsidian-livesync-webclip obsidian-livesync-webclip
ID jfpaflmpckblieefkegjncjoceapakdf
Officiell webbadress https://chromewebstore.google.com/detail/obsidian-livesync-webclip/jfpaflmpckblieefkegjncjoceapakdf
Beskrivning Webclipper for Obsidian LiveSync
Filstorlek 78.67 KB
Antal Installationer 1,456
Aktuell Version 0.6
Senast Uppdaterad 2023-12-11
Publiceringsdatum 2021-10-25
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare vrtmrz
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/vrtmrz/obsidian-livesync
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "name": "obsidian-livesync-webclip",
    "description": "Webclipper for Obsidian LiveSync",
    "version": "0.6",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "pageCapture"
    ],
    "host_permissions": [
        ""
    ]
}