Markdown Links Creater

Create link as Markdown format using selected text or page title, and stock the link. Then copy all stocked links to ClipBoard.

Markdown Links Creater là gì?

Markdown Links Creater là một tiện ích mở rộng Chrome được phát triển bởi nori, và tính năng chính của nó là "Create link as Markdown format using selected text or page title, and stock the link. Then copy all stocked links to ClipBoard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Markdown Links Creater

Tải xuống các tệp mở rộng Markdown Links Creater dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Copy current page title and URL in Markdown format to ClipBoard.
At every copying, in addition to the newly created link, copy to ClipBoard together with the previously copied URL (Stocked Links).

To copy, select "Create Markdown Link" from the context menu or click the browser action button next to the address bar.
If you select some text and copy from the context menu, copying selected text and current page URL.
If you want to create links for all tabs in the active window, select "Create All Markdown Link" from the context menu.

If you want to reset the previously copied URL (Stocked Links), select "Reset Stocked Links" from the context menu.

If you don't want to copy to ClipBoard together with the previously copied URL, you can choose it in the option page.

Source code is available at the following URL: https://github.com/nori1994/Markdown-Links-Creater

Below Japanese translation.
現在のページタイトルとURLを使ってMarkdown形式でリンクを作成し、クリップボードへコピーします。
コピーする度に、新たに作成するリンクに加え過去に作成したリンク(Stocked Links)を追記してクリップボードへコピーします。

コピーするには、コンテキストメニューから「Create Markdown Link」を選択するか、オムニバー横のブラウザアクションボタンをクリックしてください。
もし文字列を選択してコンテキストメニューからコピーした場合、選択した文字列とURLでリンクを作成しコピーします。
もしアクティブウィンドウにある全てのタブのリンクを生成したい場合、コンテキストメニューから「Create All Markdown Link」を選択します。

過去に作成したリンクをリセットしたい場合、コンテキストメニューから「Reset Stocked Links」を選択します。

もし過去にコピーしたリンクを追記してコピーしない場合、オプション画面で追記しないよう設定できます。

コードは次のURLにあります。: https://github.com/nori1994/Markdown-Links-Creater                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Markdown Links Creater Markdown Links Creater
ID mehjjeabilngkppolejabfpjckgikifm
URL Chính Thức https://chromewebstore.google.com/detail/markdown-links-creater/mehjjeabilngkppolejabfpjckgikifm
Mô tả Create link as Markdown format using selected text or page title, and stock the link. Then copy all stocked links to ClipBoard.
Kích Thước Tệp 18.51 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.9
Cập Nhật Lần Cuối 2020-03-27
Ngày Phát Hành 2020-03-27
Nhà Phát Triển nori
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markdown Links Creater",
    "version": "0.9",
    "description": "Create link as Markdown format using selected text or page title, and stock the link. Then copy all stocked links to ClipBoard.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon32.png"
    },
    "background": {
        "scripts": [
            "js\/common.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ]
}