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.

Qu'est-ce que Inkdrop Web Clipper ?

Inkdrop Web Clipper est une extension Chrome développée par https://inkdrop.app, et sa fonction principale est "It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Inkdrop Web Clipper

Téléchargez les fichiers d'extension Inkdrop Web Clipper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        **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.                    

Informations de Base sur l'Extension

Nom Inkdrop Web Clipper Inkdrop Web Clipper
ID foeipofmnkjhlbojckgiecdffbfnnofj
URL Officiel https://chromewebstore.google.com/detail/inkdrop-web-clipper/foeipofmnkjhlbojckgiecdffbfnnofj
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.
Taille du Fichier 202 KB
Nombre d'Installations 286
Version Actuelle 0.1.2
Dernière Mise à Jour 2023-12-08
Date de Publication 2021-04-27
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://inkdrop.app
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.inkdrop.app/
URL de la Page d'Aide https://forum.inkdrop.app/
URL de la Page de Politique de Confidentialité https://docs.inkdrop.app/privacy
Langues Prises en Charge 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"
        }
    }
}