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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Inkdrop Web Clipper

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}