Copy as Markdown

Copy Link or Image as Markdown code

什麼是Copy as Markdown?

Copy as Markdown是由yorkxin開發的Chrome擴展程式,該擴展的主要功能是“Copy Link or Image as Markdown code”。

擴展截圖

screenshot
screenshot

下載Copy as Markdown擴展crx文件

下載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
官方網址 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": [
                ""
            ]
        }
    ]
}