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开发的Chrome扩展程序,该扩展的主要功能是“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

下载Inkdrop Web Clipper扩展crx文件

下载Inkdrop Web Clipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        **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"
        }
    }
}