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.

Inkdrop Web Clipper क्या है?

Inkdrop Web Clipper https://inkdrop.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Inkdrop Web Clipper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Inkdrop Web Clipper Inkdrop Web Clipper
ID foeipofmnkjhlbojckgiecdffbfnnofj
आधिकारिक URL https://chromewebstore.google.com/detail/inkdrop-web-clipper/foeipofmnkjhlbojckgiecdffbfnnofj
विवरण It lets you save any web page off the internet to your Inkdrop database in Markdown so you can read or edit it later.
फ़ाइल का आकार 202 KB
स्थापना संख्या 286
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2023-12-08
प्रकाशन तिथि 2021-04-27
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://inkdrop.app
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.inkdrop.app/
सहायता पृष्ठ URL https://forum.inkdrop.app/
गोपनीयता नीति पृष्ठ URL https://docs.inkdrop.app/privacy
समर्थित भाषाएँ 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"
        }
    }
}