Dynalist link helper

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

Hvad er Dynalist link helper?

Dynalist link helper er en Chrome-udvidelse udviklet af yochees, og dens hovedfunktion er "Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…".

Download Dynalist link helper-udvidelses-CRX-fil

Download Dynalist link helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
Officiel URL https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
Beskrivelse Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
Filstørrelse 117 KB
Antal Installationer 25
Nuværende Version 0.1
Senest Opdateret 2017-11-21
Udgivelsesdato 2017-11-21
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler yochees
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}