Copy as Markdown

Copy Link or Image as Markdown code

Copy as Markdownคืออะไร?

Copy as Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yorkxin และคุณลักษณะหลักของมันคือ "Copy Link or Image as Markdown code"

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

screenshot
screenshot

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

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

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

                        Copy as Markdown is a Chrome extension which can help you copy the following things as Markdown to your system clipboard:

- Current Tab as Link
- A Link on the Page
  - If the link has an Image in it, the copied Markdown will take that image as link text.
- An Image on the Page
- All Tabs as a List of Links
- Select Tabs for a List of Links

You can also customize keyboards shortcuts to copy link of tab(s) without a single mouse click.

Known Issues

- Cannot grab image.alt when copying image
- On Microsoft Windows, copied page link doesn't come with the link title                    

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

ชื่อ Copy as Markdown Copy as Markdown
ID fkeaekngjflipcockcnpobkpbbfbhmdn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-as-markdown/fkeaekngjflipcockcnpobkpbbfbhmdn
คำอธิบาย Copy Link or Image as Markdown code
ขนาดไฟล์ 22.21 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 2.7.1
อัปเดตครั้งล่าสุด 2022-11-23
วันที่เผยแพร่ 2020-07-08
คะแนน 4.36/5 รวมทั้งหมด 58 คะแนน
ผู้พัฒนา yorkxin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yorkxin/copy-as-markdown/
URL หน้าช่วยเหลือ https://github.com/yorkxin/copy-as-markdown/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy as Markdown",
    "version": "2.7.1",
    "version_name": "2.7.1",
    "manifest_version": 3,
    "description": "Copy Link or Image as Markdown code",
    "permissions": [
        "activeTab",
        "alarms",
        "contextMenus",
        "scripting",
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": {
            "128": ".\/dist\/images\/icon-128.png"
        },
        "default_title": "Copy as Markdown...",
        "default_popup": ".\/dist\/ui\/popup.html",
        "browser_style": true
    },
    "icons": {
        "16": ".\/dist\/images\/icon-16.png",
        "48": ".\/dist\/images\/icon-48.png",
        "128": ".\/dist\/images\/icon-128.png"
    },
    "background": {
        "service_worker": ".\/dist\/background.js",
        "type": "module"
    },
    "commands": {
        "current-tab-link": {
            "description": "current tab: [title](url)"
        },
        "all-tabs-link-as-list": {
            "description": "all tabs: * [title](url)"
        },
        "all-tabs-title-as-list": {
            "description": "all tabs: * title"
        },
        "all-tabs-url-as-list": {
            "description": "all tabs: * url"
        },
        "highlighted-tabs-link-as-list": {
            "description": "selected tabs: * [title](url)"
        },
        "highlighted-tabs-title-as-list": {
            "description": "selected tabs: * title"
        },
        "highlighted-tabs-url-as-list": {
            "description": "selected tabs: * url"
        }
    },
    "options_ui": {
        "page": ".\/dist\/ui\/options.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/iframe-copy.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}