Copy as Markdown

Browser extension to copy hyperlinks, images, and selected text as Markdown

Copy as Markdownคืออะไร?

Copy as Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Laxman และคุณลักษณะหลักของมันคือ "Browser extension to copy hyperlinks, images, and selected text as Markdown"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy as Markdown

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

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

                        Features:

The extension allows you to copy selected text on a page as Markdown with support for features including the following

- Ability to copy links, images, and selected text as Markdown.
- Linked images, will have options to individually select link or images.
- Formatted text such as Italic, bold, strike-through, and inline code.
- Unordered and ordered lists, with task lists support.
- Tables, with respect to GFM.
- Fenced code blocks, with language detection using info strings.

Note: When copying links and images, Chrome doesn’t let you extract images alt text or anchors text content to be used in Markdown, instead the links themselves are used as link title. Firefox doesn’t have this limitation though.

Permissions:

The extension requires the following permission from you for working.

1. `contextMenus`: to show option when right-clicking.
2. `activeTab`: to be able to access content on page.
3. `clipboardWrite`: to be able to write data to clipboard (we still can’t read from your clipboard).

The extension can only write to your clipboard and not read from it in any way.                    

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

ชื่อ Copy as Markdown Copy as Markdown
ID nlaionblcaejecbkcillglodmmfhjhfi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-as-markdown/nlaionblcaejecbkcillglodmmfhjhfi
คำอธิบาย Browser extension to copy hyperlinks, images, and selected text as Markdown
ขนาดไฟล์ 32.45 KB
จำนวนการติดตั้ง 8,089
เวอร์ชันปัจจุบัน 23.3.27
อัปเดตครั้งล่าสุด 2023-03-28
วันที่เผยแพร่ 2020-07-02
คะแนน 4.74/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา Laxman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/notlmn/copy-as-markdown
URL หน้าช่วยเหลือ https://github.com/notlmn/copy-as-markdown/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy as Markdown",
    "version": "23.3.27",
    "description": "Browser extension to copy hyperlinks, images, and selected text as Markdown",
    "homepage_url": "https:\/\/github.com\/notlmn\/copy-as-markdown",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "applications": {
        "gecko": {
            "id": "{6779b4de-d680-462a-8038-43079e365983}",
            "strict_min_version": "67.0"
        }
    },
    "icons": {
        "128": "copy-as-markdown.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "copy-as-markdown.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.min.js",
            "copy-as-markdown.js"
        ]
    },
    "commands": {
        "copy-selection-as-md": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Alt+X"
            },
            "description": "Copy selection as markdown"
        }
    }
}