MarkDownload - Markdown Web Clipper

This extension works like a web clipper, but it downloads articles in markdown format.

MarkDownload - Markdown Web Clipperคืออะไร?

MarkDownload - Markdown Web Clipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย death.au และคุณลักษณะหลักของมันคือ "This extension works like a web clipper, but it downloads articles in markdown format."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MarkDownload - Markdown Web Clipper

ดาวน์โหลดไฟล์ส่วนขยาย MarkDownload - Markdown Web Clipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is an extension to clip websites and download them into a readable markdown file. Please keep in mind that it is not guaranteed to work on all websites.

To use this add-on, simply click the add-on icon while you are browsing the page you want to save offline. A popup will show the rendered markdown so you can make minor edits or copy the text, or you can click the download button to download an .md file.
Selecting text will allow you to download just the selected text

Context Menus
You can also right-click on pages, images, links and selections to copy or download snippets of Markdown.
You can also download all tabs in a window as Markdown files

Obsidian Integration
For integration with obsidian, you need to install and enable community plugins named "Advanced Obsidian URI". This plugin help us to bypass character limitation in URL. Because it's using clipboard as the source for creating new file.
More information:  https://vinzent03.github.io/obsidian-advanced-uri/

External Libraries
It uses the following libraries:

- Readability.js by Mozilla in version from commit 1fde3ac626bc4c2e5e54daa57c57d48b7ed9c574. This library is also used for the Firefox Reader View and it simplifies the page so that only the important parts are clipped. (Licensed under Apache License Version 2.0)
- Turndown by Dom Christie in version 7.1.1 is used to convert the simplified HTML (from Readability.js) into markdown. (Licensed under MIT License)
- Moment.js version 2.29.4 used to format dates in template variables

Permissions
- Data on all sites: used to enable "Download All Tabs" functionality - no other data is captured or sent online
- Access tabs: used to access the website content when the icon in the browser bar is clicked.
- Manage Downloads: necessary to be able to download the markdown file.
- Storage: used to save extension options
- Clipboard: used to copy Markdown to clipboard

Pricing
Huh? This is an open-source extension I made for fun. It's completely free. However, if you absolutely have to send me money because you like it that much, feel free to throw some coins in my hat via the following:
- https://github.com/sponsors/deathau
- https://paypal.me/deathau

The Common Mark icon courtesy of https://github.com/dcurtis/markdown-mark                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MarkDownload - Markdown Web Clipper MarkDownload - Markdown Web Clipper
ID pcmpcfapbekmbjjkdalcgopdkipoggdi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/markdownload-markdown-web/pcmpcfapbekmbjjkdalcgopdkipoggdi
คำอธิบาย This extension works like a web clipper, but it downloads articles in markdown format.
ขนาดไฟล์ 400 KB
จำนวนการติดตั้ง 70,000
เวอร์ชันปัจจุบัน 3.3.0
อัปเดตครั้งล่าสุด 2023-12-05
วันที่เผยแพร่ 2020-05-24
คะแนน 4.72/5 รวมทั้งหมด 108 คะแนน
ผู้พัฒนา death.au
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/deathau/markdown-clipper
URL หน้าช่วยเหลือ https://github.com/deathau/markdown-clipper/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MarkDownload - Markdown Web Clipper",
    "version": "3.3.0",
    "author": "Gordon Pedsersen",
    "description": "This extension works like a web clipper, but it downloads articles in markdown format.",
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "32": "icons\/favicon-32x32.png",
        "48": "icons\/favicon-48x48.png",
        "128": "icons\/appicon-128x128.png",
        "192": "icons\/favicon-192x192.png",
        "512": "icons\/favicon-512x512.png"
    },
    "permissions": [
        "",
        "activeTab",
        "downloads",
        "storage",
        "contextMenus",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_title": "MarkDownload",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/favicon-16x16.png",
            "32": "icons\/favicon-32x32.png",
            "48": "icons\/favicon-48x48.png",
            "128": "icons\/appicon-128x128.png"
        }
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background\/apache-mime-types.js",
            "background\/moment.min.js",
            "background\/turndown.js",
            "background\/turndown-plugin-gfm.js",
            "\/background\/Readability.js",
            "shared\/context-menus.js",
            "shared\/default-options.js",
            "background\/background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "chrome_style": false,
        "open_in_tab": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            }
        },
        "download_tab_as_markdown": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Save current tab as Markdown"
        },
        "copy_tab_as_markdown": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Copy current tab as Markdown to the clipboard"
        },
        "copy_selection_as_markdown": {
            "description": "Copy current selection as Markdown to the clipboard"
        },
        "copy_tab_as_markdown_link": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Copy current tab URL as Markdown link to the clipboard"
        },
        "copy_selected_tab_as_markdown_link": {
            "description": "Copy selected tabs URL as Markdown link to the clipboard"
        },
        "copy_selection_to_obsidian": {
            "description": "Copy current selection as Markdown to Obsidian"
        },
        "copy_tab_to_obsidian": {
            "description": "Copy current tab as Markdown to Obsidian"
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{1c5e4c6f-5530-49a3-b216-31ce7d744db0}",
            "strict_min_version": "65.0"
        }
    }
}