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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yochees และคุณลักษณะหลักของมันคือ "Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dynalist link helper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}