Dynalist link helper

Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…

Dynalist link helper là gì?

Dynalist link helper là một tiện ích mở rộng Chrome được phát triển bởi yochees, và tính năng chính của nó là "Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…".

Tải xuống tệp CRX của tiện ích mở rộng Dynalist link helper

Tải xuống các tệp mở rộng Dynalist link helper 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

                        Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard.

Example: 
Launching extension in a page with title "My page" and URL "www.mypage.com" will generate string [My page](www.mypage.com) ready to be pasted.

For easier use - set keyboard shortchut at menu > more tools > extensions > keyboard shortcuts.                    

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

Tên Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
URL Chính Thức https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
Mô tả Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
Kích Thước Tệp 117 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-11-21
Ngày Phát Hành 2017-11-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển yochees
Email [email protected]
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": "Dynalist link helper",
    "version": "0.1",
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.js",
                "content.js"
            ]
        }
    ]
}