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とは何ですか?

Dynalist link helperはyocheesによって開発されたChromeの拡張機能で、その主な機能は「Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…」です。

Dynalist link helper拡張機能のCRXファイルをダウンロード

Dynalist link helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
公式URL https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
説明 Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
ファイルサイズ 117 KB
インストール数 25
現在のバージョン 0.1
最終更新日 2017-11-21
公開日 2017-11-21
評価 5.00/5 合計 1 レビュー
開発者 yochees
Eメール [email protected]
支払い方法 free
対応言語 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"
            ]
        }
    ]
}