Inkdrop Web Clipper

It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later.

Was ist Inkdrop Web Clipper?

Inkdrop Web Clipper ist eine Chrome-Erweiterung, die von https://inkdrop.app entwickelt wurde, und ihr Hauptmerkmal ist "It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Inkdrop Web Clipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Inkdrop Web Clipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        **For Inkdrop users only**

Clip a web page as Markdown and store it to Inkdrop.
This extension allows to turn main content of pages or portions of them into Inkdrop Markdown notes.

Inkdrop is a Markdown note-taking app that syncs across devices on mobile and desktop platforms.                    

Grundlegende Informationen zur Erweiterung

Name Inkdrop Web Clipper Inkdrop Web Clipper
ID foeipofmnkjhlbojckgiecdffbfnnofj
Offizielle URL https://chromewebstore.google.com/detail/inkdrop-web-clipper/foeipofmnkjhlbojckgiecdffbfnnofj
Beschreibung It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later.
Dateigröße 202 KB
Installationsanzahl 286
Aktuelle Version 0.1.2
Letztes Update 2023-12-08
Veröffentlichungsdatum 2021-04-27
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://inkdrop.app
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.inkdrop.app/
Hilfeseite URL https://forum.inkdrop.app/
URL der Datenschutzrichtlinien-Seite https://docs.inkdrop.app/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "Inkdrop Web Clipper",
    "short_name": "Markdown Web Clipper for Inkdrop",
    "description": "It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later.",
    "default_locale": "en",
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/img\/icon-16x16.png",
        "48": "assets\/img\/icon-48x48.png",
        "128": "assets\/img\/icon-128x128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/localhost\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; connect-src ws:\/\/localhost:*\/ http:\/\/localhost:*\/",
        "sandbox": "sandbox allow-scripts"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}